-
Notifications
You must be signed in to change notification settings - Fork 5
/
default.css
77 lines (77 loc) · 1.14 KB
/
default.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
body, table, td, h3 {
margin: 0;
padding: 0;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
height: 100%;
}
h3 {
padding: 10px 0;
font-weight: normal;
text-align: center;
}
table {
border-collapse: collapse;
margin: auto;
height: 100%;
background: #fff;
}
td {
vertical-align: top;
padding: 15px;
}
#info {
background: #f1f1f1;
width: 240px;
}
input, select {
width: 100%;
margin: 0 0 5px 0;
padding: 2px 5px;
font-size: 16px;
}
select {
font-size: 12px;
}
button {
margin: 0 0 10px 0;
}
#channels, #send {
text-align: center;
}
#channels b {
display: block;
font-weight: normal;
background: #888;
color: #fff;
}
#messages > div {
font-size: 16px;
width: 800px;
white-space: nowrap;
overflow: hidden;
}
#users b, #users i {
display: block;
font-style: normal;
width: auto;
color: #666;
}
#users br {
clear: both;
}
#users img {
float: left;
padding: 0 5px 5px 0;
width: 48px;
}
#messages .json {
color: #666;
}
.error {
color: red;
}
#users .me b, #users .me i {
color: #43A047;
}