-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcommon.css
130 lines (101 loc) · 1.97 KB
/
common.css
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
/* ----------------------------- Base ---------------------------- */
html {
font-size: 62.5%;
}
body {
margin: 0px;
padding: 0px;
background-color: #fff;
color: #222;
font-family: "Lucida Grande", "Tahoma", "Helvetica", "Arial", sans-serif;
font-size: 120%;
quotes: "\201C" "\201E" "\2018" "\2019";
}
table, tr, td {
font-size: inherit;
}
tr, td {
vertical-align: top;
}
a:link {
color: #222;
}
a:visited {
color: #666;
}
a:hover {
color: #000;
}
a:active {
}
a:focus {
}
img, a img {
border: none;
}
/* ----------------------------- Path ---------------------------- */
#path {
color: #333;
background-color: #f8f8f8;
border-bottom: 1px solid #ccc;
padding: 3px 8px;
margin: 0px;
}
#path li {
display: inline;
padding-left: 13px;
padding-right: 3px;
background-repeat: no-repeat;
background-position: 1px 5px;
}
#path span {
font-weight: bold;
}
/* ----------------------------- Header ---------------------------- */
#header {
margin: 24px 48px;
}
#header h1 {
font-size: 250%;
color: #222;
margin: 0;
margin-bottom: 6px;
}
#header h2 {
font-size: 120%;
color: #aaa;
margin: 0;
}
/* ----------------------------- Content ---------------------------- */
#content {
margin: 24px 48px;
}
/* ----------------------------- Footer ---------------------------- */
#footer {
margin-top: 48px;
border-top: 1px solid #ccc;
padding: 6px;
text-align: center;
color: #888;
font-size: 80%;
}
#footer a {
color: #888;
}
/* ----------------------------- Path ---------------------------- */
table.spaced-table {
border-collapse: collapse;
}
table.spaced-table td {
padding: 0;
padding-left: 1em;
}
table.spaced-table td:first-child {
padding-left: 0;
}
table.spaced-table tr td {
padding-top: 1em;
}
table.spaced-table tr:first-child td {
padding-top: 0;
}