PluginProbe
WpStream – Live Streaming, Video on Demand, Pay Per View / 3.7
WpStream – Live Streaming, Video on Demand, Pay Per View v3.7
4.14.1 4.14.0 4.13.2 4.13.1 4.13 4.12.5 4.12.4 4.12.3 4.12.2 4.12.1 4.12 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9 4.5 4.5.1 4.5.11 4.5.11.1 4.5.11.2 4.5.11.4 4.5.11.5 4.5.11.6 All 181 releases
wpstream / public / chat_lib / css / chat.css

chat.css in WpStream – Live Streaming, Video on Demand, Pay Per View 3.7, at public/chat_lib/css/chat.css

126 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2
3 #emoji, #sound, #desktop, #greentext, #synthesis, #recognition, #inline {
4 margin-left: 10px;
5 }
6
7 #icon-settings, #icon-audio {
8 color: white;
9 top: -7px;
10 left: -3.5px;
11 }
12
13 #audio {
14 margin-right: 10px;
15 }
16
17 #typing {
18 margin-left: 10px;
19 font-style: italic;
20 font-size: 9pt;
21 }
22
23 .mdi {
24 font-size: 20px;
25 }
26
27 .name {
28 float: left;
29 }
30
31 .namelink {
32 color: inherit!important;
33 }
34
35 .self {
36 color: #eb9d00!important;
37 }
38
39 .helper {
40 color: #55aef6!important;
41 }
42
43 .moderator {
44 color: #689f38!important;
45 }
46
47 .administrator {
48 color: #f55549!important;
49 }
50
51 .msg {
52 word-wrap: break-word;
53 word-break: break-all;
54 padding-right: 20px;
55 padding-left: 20px;
56 }
57
58 .msg a img {
59 max-width: 350px;
60 }
61
62 .timestamp {
63 float: right;
64 font-size: 8pt;
65 font-weight: bold;
66 margin-left: 20px;
67 }
68
69 .delete {
70 float: right;
71 font-size: 8pt;
72 font-weight: bold;
73 display: none;
74 }
75
76 .pm , .mention {
77 color: #eb9d00;
78 }
79
80 .emote span:nth-child(4) {
81 font-style: italic;
82 }
83
84 .global, .kick, .role, .ban {
85 color: #f55549!important;
86 }
87
88 .info {
89 color: #55aef6;
90 }
91
92 .light {
93 color: #616161;
94 }
95
96 .message {
97 color: #2b2b2b;
98 margin-top: 3px;
99 }
100
101 .spin {
102 -webkit-animation: spin 1500ms infinite linear;
103 animation: spin 1500ms infinite linear;
104 }
105
106 @-webkit-keyframes spin {
107 0% {
108 -webkit-transform: rotate(0deg);
109 transform: rotate(0deg);
110 }
111 100% {
112 -webkit-transform: rotate(359deg);
113 transform: rotate(359deg);
114 }
115 }
116
117 @keyframes spin {
118 0% {
119 -webkit-transform: rotate(0deg);
120 transform: rotate(0deg);
121 }
122 100% {
123 -webkit-transform: rotate(359deg);
124 transform: rotate(359deg);
125 }
126 }