-
Notifications
You must be signed in to change notification settings - Fork 248
/
style.css
122 lines (104 loc) · 1.75 KB
/
style.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
113
114
115
116
117
118
119
120
121
122
body {
padding: 0;
margin: 0;
}
body, #entry {
background: #22252a;
color: #eee;
}
body, table {
font-family: DejaVu Sans Mono, fixed;
font-size: 14pt;
line-height: 150%;
}
tr,td,table {
padding: 0;
margin: 0;
outline-width: 0;
border-width: 0;
}
table {
border-collapse: collapse;
border-spacing: 0
}
a { text-decoration: none; color: #888; }
a:hover { text-decoration: underline; color: #aaa; }
#loading, #connect {
background: #22252a;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 1em;
}
#loading { z-index: 10000000; }
#connect { z-index: 10000001; }
#loading p, #connect fieldset {
font-family: DejaVu Sans Mono, fixed;
width: 30em;
border: 0;
}
#toolbar {
position: fixed;
color: #fff;
width: 100%;
bottom: 0;
background: #733;
}
#entry {
width: 100%;
font-size: inherit;
padding: 1em;
margin: 0;
border-width: 0;
outline-width: 0;
clear: both;
}
#log {
display: block;
/* enough padding to clear the toolbar.. is there a better way to do this? */
padding-bottom: 5.1em;
background: inherit;
overflow: hidden;
float: left;
width: 75%;
}
#users {
background: #733;
margin-top: 1em;
padding: 0em;
width: 15%;
margin-left: 80%;
position: fixed;
}
/* not very important info */
.notice td, .join td, .part td, .message .date { color: #555; }
.error td { color: #933; }
.personal .nick, .notice .nick { color: #cd5; }
.message {
margin: 0.1em 0;
}
.message td {
vertical-align: top;
}
.nick {
font-weight: bold;
padding: 0 1em 0 0.5em;
}
.nick a {
color: inherit;
}
#toolbar ul {
margin: 0;
padding: 0;
list-style: none;
}
#toolbar li {
display: block;
float: left;
margin: 0 2em 0 0;
}
#usersLink {
color: inherit;
}