-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
191 lines (162 loc) · 3.06 KB
/
style.css
File metadata and controls
191 lines (162 loc) · 3.06 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
html,body {
height: 100%;
padding: 0;
margin: 0;
overflow: hidden;
color: #333333;
}
#messages div {
padding: 5px;
background: #FFD494;
}
#messages div:nth-child(odd) {
background: #FFB84D;
}
.small {
font-size: 80%;
}
.private {
font-weight: bold;
}
.server {
opacity: 0.4;
}
#messages {
float: left;
width: 76%;
height: 100%;
overflow: scroll;
background: #FFD494;
}
#messages,#userList {
padding-bottom: 75px;
overflow-x: scroll;
box-sizing: border-box;
z-index: 5;
}
#userList {
width: 24%;
float: right;
height: 100%;
background: #FFD494;
padding: 0px 20px;
}
#userList div:hover {
cursor: pointer;
}
#emoticons {
width: 100%;
position: absolute;
bottom: 75px;
right: 0;
text-align: right;
display: none;
z-index: 10;
background: rgba(0,0,0,0.4);
box-shadow: 0px 0px 5px #333333;
padding: 10px;
}
#loading {
z-index: 9999;
}
#loading, #startScreen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #D76519;
text-align: center;
}
#startScreen {
z-index: 999;
text-align: center;
}
#startOptions {
border-radius: 10px;
background: white;
margin: 100px auto;
width: 300px;
padding: 20px;
padding-top: 10px;
box-shadow: 0px 0px 20px #AC5114;
}
#fileDialog {
display: none;
}
#startOptions input, #startOptions button {
width: 100%;
padding: 10px;
box-sizing: border-box;
box-shadow: 0px 0px 5px #dddddd;
}
#messageBar {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background: green;
height: 75px;
box-shadow: 0px 0px 5px #333333;
z-index: 9;
}
#messageBar input {
width: 76%;
padding: 0px 20px !important;
}
#messageBar button {
width: 8%;
background: #eeeeee;
}
#messageBar input, #messageBar button {
float: left;
margin: 0;
padding: 0;
border: none;
height: 100%;
box-sizing: border-box;
}
/* Loading, Copyright: http://tobiasahlin.com/spinkit/ */
.spinner {
margin: 200px auto 0;
width: 70px;
text-align: center;
}
.spinner > div {
width: 18px;
height: 18px;
background-color: #fff;
border-radius: 100%;
display: inline-block;
-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
animation: bouncedelay 1.4s infinite ease-in-out;
/* Prevent first frame from flickering when animation starts */
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0.0);
}
40% {
-webkit-transform: scale(1.0);
};
}
@keyframes bouncedelay {
0%, 80%, 100% {
transform: scale(0.0);
-webkit-transform: scale(0.0);
}
40% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
};
}