]>
Commit | Line | Data |
---|---|---|
1 | @text_color: #666; | |
2 | @background_color: #fff; | |
3 | @emphasis_color: #222; | |
4 | @light_color: #999; | |
5 | @border_color: #eee; | |
6 | ||
7 | *{ | |
8 | margin: 0; | |
9 | padding: 0; | |
10 | } | |
11 | ||
12 | body{ | |
13 | color: @text_color; | |
14 | background-color: @background_color; | |
15 | text-align: center; | |
16 | font-size: .625em; | |
17 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
18 | } | |
19 | ||
20 | #wrapper{ | |
21 | margin: 0 auto; | |
22 | width: 960px; | |
23 | text-align: left; | |
24 | } | |
25 | ||
26 | #header #logo{ | |
27 | background-image: url(/images/logo.png); | |
28 | background-repeat: no-repeat; | |
29 | width: 460px; | |
30 | height: 212px; | |
31 | display: block; | |
32 | margin: 10px 250px; | |
33 | } | |
34 | ||
35 | #header #logo span{ | |
36 | display: none; | |
37 | } | |
38 | ||
39 | #header #description p{ | |
40 | font-size: 1.4em; | |
41 | line-height: 1.8em; | |
42 | margin: 10px 170px; | |
43 | width: 620px; | |
44 | color: @light_color; | |
45 | } | |
46 | ||
47 | #body h1{ | |
48 | margin: 20px 90px; | |
49 | font-size: 2.4em; | |
50 | color: @emphasis_color; | |
51 | } | |
52 | ||
53 | #body p{ | |
54 | margin: 20px 90px; | |
55 | font-size: 1.6em; | |
56 | line-height: 2.4em; | |
57 | text-indent: 3em; | |
58 | text-align: justify; | |
59 | } | |
60 | ||
61 | hr{ | |
62 | margin: 10px; | |
63 | border: 0; | |
64 | border-bottom: 1px solid @border_color; | |
65 | } |