-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathscreen.sass
450 lines (394 loc) · 8.59 KB
/
screen.sass
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
@font-face
font-family: 'Open Sans'
font-style: normal
font-weight: 400
src: local("Open Sans"), local("OpenSans"), url(//themes.googleusercontent.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format("woff")
@import compass/reset
@import compass/css3
@import compass/layout/sticky-footer
@import base.sass
@import default.sass
@import text.sass
@include sticky-footer(80px, "#container", "#layout-footer", "#footer")
*
margin: 0
padding: 0
font-size: 1em
body
background: #8b1417 url("/images/bottom-gradient.gif") repeat-x fixed center bottom
font-family: 'Open Sans', sans-serif !important
line-height: 1.4em
.relative
position: relative
.clear
clear: both
.center
margin-left: auto
margin-right: auto
.box
margin-top: 1em
padding: 0.8em
/* Not used */
.container
margin: 4em auto
width: auto
clear: both
#cse
width: 100%
text-align: left
margin-bottom: 10px
.gsc-adBlock
display: none
.gsc-control-cse
background: transparent
border: 0px
a.gs-title
color: #a00
h2
font-weight: bold
padding:
bottom: 10px
color: #9c1f1f
border:
style: solid
top: none
left: none
right: none
bottom:
width: 1px
color: #CCCCCC
a
text-decoration: none
font-weight: bold
/* 871E05
color: maroon
&:visited
color: #710000
&:hover
text-decoration: none
color: blue
img
border: none
table.header
background: #eee
margin-top: 1em
width: 100%
font-size: small
thead
tr
th
text-shadow: 1px 1px 1px #fff
text-transform: uppercase
letter-spacing: 0em
width: 20%
color: maroon
padding: 0
tbody
tr
td
width: 25%
vertical-align: top
text-align: justify
padding-right: 1em
padding-left: 0.8em
p
font-size: 0.9em
color: #555
line-height: 1.5em
padding: 0em
a
img
float: right
padding: 0
padding-bottom: 0.5em
padding-left: 1em
/************* Design update 2011-06-21 **************/
center
margin: 0
.clear
clear: both
h5
font-size: 0.8em
color: black
font-weight: normal
margin-bottom: 0.5em
margin-top: 0.5em
h6
font-size: 0.7em
font-weight: normal
text-transform: uppercase
color: #a1a1a1
letter-spacing: 0.3em
text-align: center
margin: 0.3em 0 0 0
//container-width
$container-width: 90%
// content width
$width: 80%
// height of support box on the very top
$height: 190px
=backgroundtex
background: #fafaf2 url('/images/bgtex.jpg') repeat
=roundcorners
-moz-border-radius: 10px
-webkit-border-radius: 10px
-khtml-border-radius: 10px
border-radius: 10px
@mixin round_border($topleft,$topright,$bottomleft,$bottomright)
border-top-left-radius: $topleft
border-top-right-radius: $topright
border-bottom-left-radius: $bottomleft
border-bottom-right-radius: $bottomright
-moz-border-radius-topleft: $topleft
-moz-border-radius-topright: $topright
-moz-border-radius-bottomleft: $bottomleft
-moz-border-radius-bottomright: $bottomright
-webkit-border-top-left-radius: $topleft
-webkit-border-top-right-radius: $topright
-webkit-border-bottom-left-radius: $bottomleft
-webkit-border-bottom-right-radius: $bottomright
-o-border-radius-topleft: $topleft
-o-border-radius-topright: $topright
-o-border-radius-bottomleft: $bottomleft
-o-border-radius-bottomright: $bottomright
=topcorners
-moz-border-radius-topleft: 10px
-webkit-border-top-left-radius: 10px
-khtml-border-radius-topleft: 10px
-o-border-radius-topleft: 10px
border-top-left-radius: 10px
-moz-border-radius-topright: 10px
-webkit-border-top-right-radius: 10px
-khtml-border-radius-topright: 10px
-o-border-radius-topright: 10px
border-top-right-radius: 10px
=centered($width)
margin-left: auto
margin-right: auto
width: $width
=shadow
-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.2)
-moz-box-shadow: 0px 2px 5px rgba(0,0,0,0.2)
-khtml-box-shadow: 0px 2px 5px rgba(0,0,0,0.2)
box-shadow: 0px 2px 5px rgba(0,0,0,0.2)
$box-background: #3D3D3D
$footer-background: #3C0002
$title-background: #292929
.title
font-size: 80%
text-align: center
text-transform: uppercase
letter-spacing: 0.1em
color: #5C5C5C
text-shadow: 0.1em 0.1em #000
background: $title-background
@mixin default-box
background: $box-background
float: left
+shadow
+round_border(0, 0, 5px, 5px)
width: 18%
margin-right: 0.7%
@mixin default-text
.text
font-size: 70%
padding: 3%
color: #E0E0E0
#heaven
height: 1%
@include sticky-footer(80px)
width: 100%
+box-shadow
background: $title-background
#container
+centered($container-width)
margin-bottom: 2%
#donate, #recommend, #irc
a
color: #E0BABA
&:hover
text-decoration: underline
#logo
text-align: center
@include default-box
background: $title-background
img
max-width: 100%
max-height: 170px
#donate
@include default-box
@include default-text
height: auto
.pledgie
text-align: center
img
max-width: 90%
margin-top: 5%
#recommend, #irc
@include default-box
@include default-text
#recommend
.logo
text-align: center
padding: 3%
img
max-height: 13%
max-width: 100%
margin: 0 auto
margin-top: 10%
#sponsors
float: right
width: 25%
background: $box-background
+round_border(0, 0, 5px, 5px)
+shadow
height: auto
.logo
padding: 1%
text-align: center
font-size: 80%
vertical-align: middle
img
vertical-align: middle
max-height: 70px
margin: 0 auto
margin-top: 3%
.long
img
max-width: 40%
#content
+shadow
+backgroundtex
padding: 1em
margin-top: 2%
font-size: 0.9em
+round_border(5px, 5px, 5px, 5px)
aside
font-style: italic
font-size: 80%
#article
p
padding: 1px
text-indent: 5px
hr.medium
margin: 0
height: 2px
background-color: #8b1417
h1, h2, h3
a.anchor
opacity: 0.3
cursor: pointer
a.anchor:hover
opacity: 0.7
img
max-width: 100%
div
font-size: medium
&.title
margin-left: 130px
line-height: 1em
color: #871E05
font-weight: bold
font-size: 600%
&.tagline
margin-left: 133px
font-size: 120%
line-height: 1em
p
padding: 5px
code
margin: 0.09em
padding: 0.09em
font-weight: bold
background-color: lighten(#F0F0E9, 10)
border: 1px solid maroon
pre.code
margin-bottom: 0.5em
padding: 0.75em
background: #fff
border: 1px solid maroon
overflow: auto
pre.code-shell-cmd:before
content: '$\00A0'
ul.disk
list-style: disc
ul, ul.circle
list-style: circle
ul.square
list-style: square
#docindex
+shadow
+backgroundtex
padding: 1em
margin-top: 2%
font-size: 0.9em
+round_border(5px, 5px, 5px, 5px)
.headline
font-size: small
font-weight: bold
text-shadow: 1px 1px 1px #fff
color: maroon
.column
width: 22%
float: left
margin-top: 1em
margin-left: 1em
ul
font-size: 0.7em
list-style-type: none
margin: 0
a
padding: 2px
color: #555658
&:visited
color: #303030
&:hover
text-decoration: none
color: blue
&:active
color: #009bdb
li
margin-left: 0.5em
margin-top: -0.3em
@media screen and (max-width: 768px)
#logo, #donate, #recommend, #irc, #sponsors
min-height: 120px
#sponsors
.logo .title
display: none
#donate .text, .more
display: none
@media screen and (min-width: 768px)
#logo, #donate, #recommend, #irc, #sponsors
min-height: 200px
@media screen and (min-width: 1200px)
#content
width: 48%
float: left
margin-bottom: 1%
#docindex
width: 44%
float: right
a.docindex
display: none
#footer
height: 80px
@include sticky-footer(80px)
width: 100%
+box-shadow
background: $footer-background
#footer-container
+centered($container-width)
font-size: 0.7em
color: #CFC2B5
a
color: #CFC2B5
#footer-logos
float: right
#hosted-by
float: left
margin-right: 5em
#tested-with
float: right
#copyright
padding-top: 50px