-
Notifications
You must be signed in to change notification settings - Fork 110
/
chat.css
112 lines (88 loc) · 2.07 KB
/
chat.css
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#telegramSiteHelper_box {
display: block;
position: relative;
width: 100%;
background-color: #F7E8C4;
border-radius: 4px;
z-index: 9999;
padding: 3px;
box-sizing: border-box;
}
#telegramSiteHelper_chatWrapper {
display: block;
position: relative;
margin: 0px 0 3px 0;
background-color: #FEFBF5;
border-radius: 3px 3px 0 0;
overflow-y: hidden;
height: 261px;
}
#telegramSiteHelper_chatWrapper:hover{
overflow-y: scroll;
}
#telegramSiteHelper_chatTextBox {
display: block;
position: relative;
width: 100%;
font-size: 10pt;
border: 0px;
box-sizing: border-box;
padding: 10px;
font-weight: normal;
border-radius: 0 0 3px 3px;
}
#telegramSiteHelper_chatTextBox:focus{
background-color:#fff;
outline:none;
}
#telegramSiteHelper_chatInner{
width: 100%;
box-sizing: border-box;
height: auto;
margin: 0;
padding: 0;
vertical-align: top;
position: relative;
top: 0;}
#telegramSiteHelper_chatMessages{
display: block;
position: relative;
margin: 0;
padding: 0;
list-style: none;
}
#telegramSiteHelper_chatMessages li.msg{
display: block;
position:relative;
margin: 5px;
background-color: #fff;
font-size: 9pt;
padding: 7px 5px;
-webkit-box-shadow: 0 1px 1px 1px #EEF0F5;
box-shadow: 0 1px 1px 1px #EEF0F5;
text-align:left;
}
#telegramSiteHelper_chatMessages b.name{
font-weight:600;
display:inline-block;
width:56%;
text-align:left;
font-size:8pt;
}
#telegramSiteHelper_chatMessages b.time{
font-weight:300;
display:inline-block;
text-align: right;
width: 40%;
color: #ccc;
font-size: 8pt;
}
#telegramSiteHelper_chatMessages .clr1{color:#1C3FA7}
#telegramSiteHelper_chatMessages .clr2{color:#EF4F4F}
#telegramSiteHelper_firstChatMsg {
text-align: center;
padding: 60px 10px;
font-size: 20pt;
color: rgba(0,0,0,0.4);
letter-spacing: -0.5pt;
}