-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmint.css
189 lines (178 loc) · 2.88 KB
/
mint.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
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
@import url(layout.css);
/* stop header elements from pushing divs apart */
p,
h1,
h2 {
margin: 0;
padding-top: 0;
}
h3,
h4,
h5,
h6 {
margin: 0;
padding-top: 0.5em;
padding-bottom: 0.5em;
}
p {
padding-top: 0.5em;
padding-bottom: 0.5em;
}
/* some basics: a colour and font settings */
body {
background-color: #c6dcd1;
font-family: sans-serif;
font-size: small;
}
a {
color: #226;
background: #efe;
}
a:active {
color: #000;
}
a:hover {
text-decoration: underline;
}
a:visited {
font-style: italic;
}
#navigation a {
background: none;
text-decoration: none;
}
/* the header of the page will occupy the top 96 pixels and all of the
* width of the page. The site-title will be an image replacement and
* occupy virtually all of the space.
*
* The body has a gradient background which starts immediately below
* the header and tiles left-to-right
*/
#header {
background: #fff;
margin: -16px;
margin-bottom: 0;
height: 92px;
}
#header #site {
padding-top: 16px;
width: 351px;
height: 80px;
text-align: right;
color: #fff;
font-size: 0pt;
background: url(img/logo.png) no-repeat 0% 50%;
width: 100%;
}
#header #forkme {
position: absolute;
margin: 0;
top: 0;
right: 0;
border: 0;
}
body {
background-image: url(img/gradient.png);
background-repeat: repeat-x;
background-position: 0px 92px;
}
/* the page title from the header will be moved down to form a 'tab'
* on top of the body area. Similarly, the h3 at the top of the
* contents div will be a tab.
*/
/* positioning */
#navigation {
top: 128px;
}
#header #page {
position: absolute;
top: 128px;
left: 200px;
margin-left: 16px;
}
/* style */
#header #page,
.nav h3 {
color: #fff;
background: #87ad9a; /*#00a;*/
border: 2px solid #497d63; /* #000;*/
border-bottom: none;
height: 24px;
font-weight: bold;
font-size: 11pt;
vertical-align: middle;
text-align: center;
padding-left: 1em;
padding-right: 1em;
}
.nav h3 {
width: 50%;
padding-top: 0;
padding-bottom: 0;
}
/* now need to push the main portion of the page down to fit below the
* tab title
*/
#main {
margin-top: 62px;
/* http://tantek.com/CSS/Examples/boxmodelhack.html */
voice-family: '"}"';
voice-family: inherit;
margin-top: 60px;
}
html > body #main {
margin-top: 62px;
}
.nav ul {
margin-left: 0;
padding-left: 0.5em;
padding-top: 0.5em;
padding-bottom: 0.5em;
}
.nav ul,
#main,
#footer,
.nav p {
background: #fff;
border: 2px solid #497d63;
}
.nav ul {
list-style: none;
}
.nav ul ul {
list-style: disc;
}
.nav ul ul {
border: none;
padding-top: 0;
margin-left: 2em;
padding-left: 0;
}
table {
width: 100%;
}
table,
th,
td,
tr {
margin: 0;
border-spacing: 0;
}
th {
text-align: center;
background: #87ad9a;
color: #fff;
}
td,
th {
border: solid 1px #497d63;
}
table {
border: solid 2px #497d63;
}
img {
margin: 1em;
}
a img {
border: 0;
}