SideChat.css
1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
*{
margin:0%;
padding:0%;
border-color: black;
border-width: 1px;
}
.SideChat {
color: black;
background-color: gray;
position: absolute;
z-index: 999;
top:20%;
right:4%;
transition: 0ms;
width:20%;
min-width: 150px;
max-width: 200px;
height:35%;
min-height: 200px;
max-height: 300px;
display: grid;
grid-template-rows: 4.3fr 1fr;
font-size: 90%;
border-color: black;
border-radius: 5px;
align-items: center;
justify-items: center;
}
.SideChat .innerChat1 {
background-color: white;
width: 87%;
height: 90%;
margin-top: 3%;
overflow: scroll;
vertical-align: bottom;
}
.SideChat .innerChat2 {
grid-template-rows: 1fr 2fr;
height: 100%;
width: 100%;
padding-left: 3%;
padding-right: 3%;
}
.SideChat .innerChat2 .innerBtnCover{
grid-template-columns: 1fr 1.2fr 1fr;
height:30%;
padding-left: 0%;
padding-right: 0%;
}
.SideChat .innerChat2 .innerBtnCover .innerBtn{
width:33%;
height:100%;
min-height: 20px;
margin-bottom: 4%;
font-size:70%;
overflow: hidden;
}