diff options
Diffstat (limited to 'style.css')
-rwxr-xr-x | style.css | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100755 index 0000000..bf3f30d --- /dev/null +++ b/style.css | |||
@@ -0,0 +1,92 @@ | |||
1 | div#wrap { | ||
2 | margin: 0 auto; | ||
3 | width: 31.25em; | ||
4 | } | ||
5 | |||
6 | div.post { | ||
7 | clear: both; | ||
8 | } | ||
9 | |||
10 | div.date { | ||
11 | float: left; | ||
12 | background-color: #cccccc; | ||
13 | text-align: center; | ||
14 | text-transform: uppercase; | ||
15 | font-family: Arial; | ||
16 | padding: 4px; | ||
17 | margin-right: 4px; | ||
18 | width: 3em; | ||
19 | height: 3.5em; | ||
20 | } | ||
21 | |||
22 | div.title { | ||
23 | padding: 4px; | ||
24 | width: 25em; | ||
25 | margin-bottom: 1em; | ||
26 | min-height: 3.5em; | ||
27 | margin: 0px 0px 2px; | ||
28 | letter-spacing: -1px; | ||
29 | font-style: "Trebuchet MS", Tahoma, Arial; | ||
30 | line-height: 100%; | ||
31 | padding-bottom: 3px; | ||
32 | } | ||
33 | |||
34 | h1 { | ||
35 | text-align: center; | ||
36 | font-family: Arial; | ||
37 | } | ||
38 | |||
39 | div.cleardiv { | ||
40 | clear: both; | ||
41 | } | ||
42 | |||
43 | a { | ||
44 | text-decoration: none; | ||
45 | color: black; | ||
46 | } | ||
47 | |||
48 | a:hover, a:focus, a:active { | ||
49 | text-decoration: underline; | ||
50 | } | ||
51 | |||
52 | ul.navbar li { | ||
53 | background-color: #cccccc; | ||
54 | text-align: center; | ||
55 | font-family: Arial; | ||
56 | padding: 4px; | ||
57 | text-transform: uppercase; | ||
58 | margin-left: 2px; | ||
59 | margin-right: 2px; | ||
60 | display: inline; | ||
61 | } | ||
62 | |||
63 | ul.navbar { | ||
64 | list-style-type: none; | ||
65 | text-align: center; | ||
66 | padding-left: 0; | ||
67 | } | ||
68 | |||
69 | div.image { | ||
70 | margin: 0 auto; | ||
71 | width: 250px; | ||
72 | } | ||
73 | |||
74 | div#header h1 { | ||
75 | text-indent: -9999px; | ||
76 | background-image: url(/title.png); | ||
77 | height: 115px; | ||
78 | width: 500px; | ||
79 | } | ||
80 | |||
81 | div#footer { | ||
82 | margin-top: 4px; | ||
83 | font-size: x-small; | ||
84 | color: gray; | ||
85 | text-align: center; | ||
86 | } | ||
87 | |||
88 | ul#archive { | ||
89 | list-style-type: none; | ||
90 | text-align: center; | ||
91 | padding-left: 0; | ||
92 | } | ||