f7e92cc2eb8b669d274425a64494d437e49fa38e
[KiwiIRC.git] / client_backbone / css / style.css
1 * { margin:0px; padding:0px; }
2 html, body { height:100%; }
3 a { color:#36C; text-decoration:none; cursor:pointer; }
4
5
6
7
8 #kiwi {
9 overflow:hidden; position:relative;
10 height:100%;
11 font-family:Arial, Helvetica, sans-serif;
12 font-size:14px; line-height:1.4em;
13 background:#EBEBEB;
14 }
15
16 /**
17 * Main layout blocks
18 */
19 #toolbar { position:absolute; top:0px; width:100%; background-color:#1B1B1B; font-size:0.9em; display:none; }
20 #panels { position:absolute; left:0px; right:200px; bottom:100px; top:100px; }
21 #memberlists { position:absolute; right:0px; width:200px; bottom:100px; top:100px; overflow-y:auto; }
22 #controlbox { position: absolute; bottom:0px; width:100%; background-color:#1B1B1B; display:none; }
23
24
25
26 #toolbar #tabs { margin-right: 200px; }
27 #toolbar .panellist {
28 overflow: hidden;
29 white-space: nowrap;
30 display:block;
31 /*height: 35px;*/
32 }
33 #toolbar .panellist li {
34 float: left; list-style: inline;
35 display:inline; position:relative;
36 padding:5px; margin:3px;
37 border: 1px solid #333;
38 background-color: #eee;
39
40 cursor: pointer;
41
42 line-height: 1.4em;
43 vertical-align: middle;
44
45 border-radius:5px;
46 -moz-border-radius:5px;
47 -webkit-border-radius:5px;
48 -khtml-border-radius:5px;
49 behavior: url(border-radius.htc);
50
51 background-image: -webkit-gradient(
52 linear,
53 left top,
54 left bottom,
55 color-stop(0.38, rgb(238,238,238)),
56 color-stop(0.68, rgb(209,209,209))
57 );
58 background-image: -moz-linear-gradient(
59 center top,
60 rgb(238,238,238) 38%,
61 rgb(209,209,209) 68%
62 );
63 }
64 #toolbar .panellist .active { padding-right:23px; }
65 #toolbar .panellist .alert_highlight {
66 background: #990000;
67 font-weight: bold;
68 }
69 #toolbar .panellist .alert_activity { font-weight: bold; background: #009900; }
70
71 #toolbar .panellist li img { width:1em; height:1em; top:7px; right:5px; position:absolute; }
72 #toolbar .panellist li img.icon { left:5px; top:2px; height:auto; width:auto; }
73
74
75 #status_message {
76 background: #FEEFB3; color: #9F6000;
77 border-bottom: 1px solid;
78 padding: 0.9em;
79 text-align: center; font-size:1.1em;
80 }
81 #status_message.err { color:#D8000C; background:#FFBABA; }
82
83
84 .panel_container { overflow-y:auto; height:100%; }
85
86
87
88 .messages {
89 overflow-x:wrap;
90 border:none; display: none;
91 height: 100%;
92 }
93 .messages a {
94 text-decoration:none;
95 }
96 .messages.active { display:block; }
97
98 .messages .msg { border-bottom: 1px solid #CCC; padding:1px; font-family:arial; font-size:0.9em; }
99 .messages .msg .time { width:6em; float:left; color:#777; }
100 .messages .msg .nick { width:7em; text-align:right; float:left; font-size:12px; }
101 .messages .msg .text { margin-left:15em; white-space:pre-wrap; word-wrap:break-word; font-family:monospace; }
102
103 .messages .msg.action .nick { display:none; }
104 .messages .msg.action .text { margin-left:9em; color:#009900; font-style:italic; }
105 .messages .msg.action.join { color:#009900; }
106 .messages .msg.action.part .text { color:#900; }
107 .messages .msg.action.quit .text { color:#900; }
108 .messages .msg.action.kick .text { color:#900; }
109 .messages .msg.status .nick { display:none; }
110 .messages .msg.status .text { color:#990000; margin-left:9em; font-weight:bold; }
111 .messages .msg.topic .nick { display:none; }
112 .messages .msg.topic .text { color:#009900; margin-left:9em; font-style: italic; }
113 /*.messages .msg.motd .nick { display:none; }*/
114 .messages .msg.motd { border:none; }
115 .messages .msg.motd .text { color:#666; }
116 .messages .msg.whois .nick { font-weight:normal; }
117 .messages .msg.whois .text { margin-left:18em; padding-left:1em; border-left:1px dashed #999; }
118 .messages .msg.error .text {
119 border:1px solid #A33F3F; background-color:#D28A8A;
120 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
121 }
122
123
124
125 #memberlists ul { list-style: none; display:none; }
126 #memberlists ul.active { display:block; }
127 #memberlists ul li { padding: 0.2em 1em; overflow-y:auto; overflow-x:hidden; cursor:pointer; }
128 #memberlists ul li:hover { background-color:#FAF7D3; }
129 #memberlists ul li a.nick { display:block; color:black; }
130
131 #memberlists ul li .userbox { margin:0 1em 5px 1em; font-size:.9em; }
132 #memberlists ul li .userbox a { display:block; text-decoration:none; border-bottom: 1px dashed #aaa; }
133
134
135
136 #controlbox .input {
137 background:#fff; margin:3px;
138 height:1.7em;
139 border-radius:5px;
140 -moz-border-radius:5px;
141 -webkit-border-radius:5px;
142 -khtml-border-radius:5px;
143 }
144 #controlbox .input .nick { text-align: right; width:11em; left:0px; position:absolute; padding:2px; cursor: pointer; }
145 #controlbox .input .nick a { text-decoration:none; color:black; }
146 #controlbox .input .input_wrap {
147 position:absolute;
148 right:7px; left: 12.2em;
149 height:1.7em;
150 }
151 #controlbox .input input {
152 border: medium none;
153 outline:none;
154 position:relative;
155 height:100%; width:100%;
156 }
157
158 #controlbox .nickchange {
159 position: absolute;
160 left: 0px;
161 background: #1B1B1B; color:#eeeeee;
162 padding:10px;
163 }
164 #controlbox .nickchange input { padding:0.3em 0.5em; }
165 #controlbox .nickchange button { padding:0.5em; }
166
167
168
169 #topic { background-color:#1B1B1B; height:2em; position:relative; }
170 #topic input {
171 position:absolute;
172 top:2; bottom:2px; left:0; width:100%;
173 padding: 0.2em 1em;
174 text-align: center;
175 }
176
177
178
179
180
181
182 .server_select { width:320px; padding:3em 0 2em 0; margin: 0 auto; }
183 .server_select .more { display: none; width:270px; margin:0 auto; }
184 .server_select button { float:right; padding:3px 7px; margin-top:10px; }
185 .server_select input { float:right; margin-bottom:5px; padding:3px 7px; width:150px; }
186 .server_select label { float:left; width:5em; padding-top:3px }
187 .server_select br { clear:both; }
188 .server_select .basic input, .server_select .basic button { font-size:1em; padding:0.5em 1em; }
189 .server_select .basic input { width:170px; }
190 .server_select .basic label { font-size:1.3em; margin-top:4px; }
191 .server_select .basic { border-bottom: 1px dashed gray; margin-bottom:1em; }
192 .server_select .basic .show_more { display: block; width:40px; margin:10px 0 0 0; font-size:0.8em; background: url(../img/more.png) no-repeat right 7px; }
193 .server_select .status { text-align: center; font-weight: bold; padding:1em; }
194 .server_select .status .ok {
195 border:1px solid #A33F3F; background-color:#D28A8A;
196 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
197 }
198
199
200
201
202 .server_select .kiwi_logo h1 {
203 font-size:20px;
204 line-height:48px; vertical-align: middle;
205 color: #1B1B1B;
206 }
207 .server_select .kiwi_logo img { float:left; margin-right:0.7em; }
208
209
210
211 #toolbar .kiwi_logo { float:right; width:200px; padding-left:10px; color:#D4D4D4; }
212 #toolbar .kiwi_logo h2 { font-weight:normal; font-size:14px; line-height:36px; vertical-align:middle; }
213 #toolbar .kiwi_logo img { height:25px; width:25px; float:left; margin: 6px 0.7em 0 0; }
214
215
216
217
218
219
220
221
222
223
224 /**
225 * Themes
226 */
227
228
229 /* Relaxed theme */
230 #kiwi.theme_relaxed .messages .msg { border-bottom: 1px solid #DEDEDE; font-family:arial; font-size:0.9em; }
231 #kiwi.theme_relaxed .messages .msg .time { width:6em; float:left; color:#777; display:none; }
232 #kiwi.theme_relaxed .messages .msg .nick { width:11em; float:left; font-size:12px; font-family:Arial; text-align:left; padding: 5px; }
233 #kiwi.theme_relaxed .messages .msg .text { margin-left:12em; border-left: 1px solid #DEDEDE; white-space:pre-wrap; word-wrap:break-word; font-family:Arial; padding:5px; }
234
235 #kiwi.theme_relaxed .messages .msg.action .nick { display:none; }
236 #kiwi.theme_relaxed .messages .msg.action .text { margin-left:9em; color:#009900; border-left:none; font-style:italic; }
237 #kiwi.theme_relaxed .messages .msg.action.join { color:#009900; }
238 #kiwi.theme_relaxed .messages .msg.action.part .text { color:#900; }
239 #kiwi.theme_relaxed .messages .msg.action.quit .text { color:#900; }
240 #kiwi.theme_relaxed .messages .msg.action.kick .text { color:#900; }
241 #kiwi.theme_relaxed .messages .msg.status .nick { display:none; }
242 #kiwi.theme_relaxed .messages .msg.status .text { color:#990000; margin-left:9em; border-left:none; font-weight:bold; }
243 #kiwi.theme_relaxed .messages .msg.topic .nick { display:none; }
244 #kiwi.theme_relaxed .messages .msg.topic .text { color:#009900; margin-left:9em; font-style: italic; border-left:none; }
245 /*#kiwi.theme_relaxed .messages .msg.motd .nick { display:none; }*/
246 #kiwi.theme_relaxed .messages .msg.motd { border:none; }
247 #kiwi.theme_relaxed .messages .msg.motd .text { color:#666; }
248 #kiwi.theme_relaxed .messages .msg.whois .nick { font-weight:normal; }
249 #kiwi.theme_relaxed .messages .msg.whois .text { margin-left:18em; padding-left:1em; border-left:1px dashed #999; }
250 #kiwi.theme_relaxed .messages .msg.error .text {
251 border:1px solid #A33F3F; background-color:#D28A8A;
252 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
253 }
254
255
256
257
258
259 /* CLI theme */
260 #kiwi.theme_cli { background:#222222; color:#6d6d6d; }
261 #kiwi.theme_cli #controlbox { background:#111111; border-top:1px solid #444444; color:#909090; font-size:1.3em; line-height:2em; }
262 #kiwi.theme_cli #controlbox .input_wrap:before { content:"> " }
263 #kiwi.theme_cli #controlbox .input { background:none; border:none; border-radius: none; }
264 #kiwi.theme_cli #controlbox .input .nick { line-height:1.7em; padding:0; }
265 #kiwi.theme_cli #controlbox .input .inp { background:transparent; color:#909090; font-size:1.3em; width:92%; }
266 /* #kiwi.theme_cli #controlbox .input .inp:before { content:">"; } */
267
268 #kiwi.theme_cli #topic { background:#111111; border-bottom:1px solid #444444; border-top:1px solid #444444; }
269 #kiwi.theme_cli #topic input { background:transparent; color:#6d6d6d; border:none; outline:none; height:1.5em; }
270
271 #kiwi.theme_cli #memberlists ul li a.nick { color:#6d6d6d; }
272
273 #kiwi.theme_cli .messages .msg > div { color:#6d6d6d; font-family: Inconsolata, Consolas, 'courier new', monospace; }
274 #kiwi.theme_cli .messages .msg { border: none; }
275 #kiwi.theme_cli .messages .msg .time { width:6em; }
276 #kiwi.theme_cli .messages .msg .nick { }
277 #kiwi.theme_cli .messages .msg .text { white-space:pre-wrap; word-wrap:break-word; }
278
279 #kiwi.theme_cli .messages .msg.action .nick { display:none; }
280 #kiwi.theme_cli .messages .msg.action .text { margin-left:9em; color:#009900; border-left:none; font-style:italic; }
281 #kiwi.theme_cli .messages .msg.action.join { color:#009900; }
282 #kiwi.theme_cli .messages .msg.action.part .text { color:#900; }
283 #kiwi.theme_cli .messages .msg.action.quit .text { color:#900; }
284 #kiwi.theme_cli .messages .msg.action.kick .text { color:#900; }
285 #kiwi.theme_cli .messages .msg.status .nick { display:none; }
286 #kiwi.theme_cli .messages .msg.status .text { color:#990000; margin-left:9em; border-left:none; font-weight:bold; }
287 #kiwi.theme_cli .messages .msg.topic .nick { display:none; }
288 #kiwi.theme_cli .messages .msg.topic .text { color:#009900; margin-left:9em; font-style: italic; border-left:none; }
289 /*#kiwi.theme_cli .messages .msg.motd .nick { display:none; }*/
290 #kiwi.theme_cli .messages .msg.motd { border:none; }
291 #kiwi.theme_cli .messages .msg.motd .text { color:#666; }
292 #kiwi.theme_cli .messages .msg.whois .nick { font-weight:normal; }
293 #kiwi.theme_cli .messages .msg.whois .text { margin-left:18em; padding-left:1em; border-left:1px dashed #999; }
294 #kiwi.theme_cli .messages .msg.error .text {
295 border:1px solid #A33F3F; background-color:#D28A8A;
296 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
297 }