-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsite.css
More file actions
85 lines (75 loc) · 1.57 KB
/
site.css
File metadata and controls
85 lines (75 loc) · 1.57 KB
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
body {
background-color: #AAA;
}
#bodypane {
width: 800px;
color: #000;
font-family: sans-serif;
margin-left: auto;
margin-right: auto;
}
.bar {
background-color: #222;
color: #99A;
padding: 20px;
text-align: center;
}
.bar a {
color: #AAA;
}
.bar a:visited {
color: #888;
}
#header {
font-size: 1.5em;
font-weight: bolder;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
border-top: 1px solid #222;
border-left: 1px solid #222;
border-right: 1px solid #222;
border-bottom: 1px solid #888;
}
#contentpane {
font-family: monospace;
font-weight: normal;
background-color: #446;
color: #DDD;
padding: 20px;
border-left: 1px solid black;
border-right: 1px solid black;
}
#contentpane p {
background-color: #557;
padding: 20px;
margin-top: 20px;
margin-bottom: 20px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
-moz-border-radius-bottomleft: 10px;
-moz-border-radius-bottomright: 10px;
}
#contentpane a {
color: #BBC;
}
#contentpane a:visited {
color: #AAB;
}
#footer {
color: #CCC;
font-size: 0.8em;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
-moz-border-radius-bottomleft: 10px;
-moz-border-radius-bottomright: 10px;
border-bottom: 1px solid #222;
border-left: 1px solid #222;
border-right: 1px solid #222;
border-top: 1px solid #888;
}