7643677c56169b50aa7d0c8686dfcbe0e281e85a
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

1) @charset "UTF-8";
2) /* Typography */
3) 
4) 
5) /* UNIVERSAL ------------*/
6) 
7) body {
Andrew Lewman remove the font no one has.

Andrew Lewman authored 12 years ago

8) 	font-family: Helvetica, Arial, sans-serif;
Andrew Lewman increase the space for the...

Andrew Lewman authored 13 years ago

9) 	font-size: 10pt;
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

10) 	color: #1a1a1a;
11) }
12) 
Andrew Lewman add dt and dd to the css ty...

Andrew Lewman authored 13 years ago

13) h1, h2, h3, h4, dt {
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

14) 	font-family: Georgia, "Times New Roman", Times, serif;
15) 	font-weight: bold;
16) 	color: #23300e;
17) }
18) 
19) h1 a:link,
20) h1 a:visited,
21) h2 a:link,
22) h2 a:visited,
23) h3 a:link,
24) h3 a:visited,
25) h4 a:link,
26) h4 a:visited { text-decoration: none; }
27) 
28) 
29) h1 {
30) 	font-size: 2em;
31) 	line-height: 28px;
32) 	margin-bottom: 10px;
33) }
34) 
Andrew Lewman add dt and dd to the css ty...

Andrew Lewman authored 13 years ago

35) h2,dt {
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

36) 	font-size: 1.5em;
37) 	line-height: 28px;
38) 	margin-bottom: 10px;
39) }
40) 	.subcol h2 { margin: 0; }
41) 	#sidenav h2,
42) 	.sidenav-sub h2 { padding: 10px 0 0 10px; }
43) 	h2.bulb {
44) 		background: url(../images/lightbulb.jpg) left top no-repeat;
45) 		padding: 0 0 0 25px;
46) 	}
47) 
48) h3 {
Andrew Lewman remove the font no one has.

Andrew Lewman authored 12 years ago

49) 	font-family: Helvetica, Arial, sans-serif;
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

50) 	font-size: 1.167em;
51) 	line-height: 20px;
52) 	color: #0d1304;
53) }
54) 
55) h4 {
Andrew Lewman remove the font no one has.

Andrew Lewman authored 12 years ago

56) 	font-family: Helvetica, Arial, sans-serif;
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

57) 	line-height: 20px;
58) 	font-size: 1em;
59) }
60) 	.focus h4 { margin-bottom: 5px; }
61) 
Andrew Lewman add dt and dd to the css ty...

Andrew Lewman authored 13 years ago

62) p, blockquote, ol, ul, dd {
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

63) 	font-size: 1em;
64) 	line-height: 20px;
65) 	margin-bottom: 18px;
66) }
67) 
68) a:link, a:visited { color: #4e6a20; }
69) a:hover { color: #a07320; }
70) 
71) strong { font-weight: bold; }
Robert Ransom Unbreak the var tag

Robert Ransom authored 13 years ago

72) em, var { font-style: italic; }
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

73) 
74) blockquote {
75) 	color: #454545;
76) 	font-style: italic;
77) 	padding: 0 20px;
78) }
79) 
80) ol, ul {
81) 	padding-left: 40px;
82) }
Andrew Lewman revert r24069

Andrew Lewman authored 13 years ago

83) ol { list-style: outside lower-alpha; }
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

84) ul { list-style: outside square; }
85) 
86) .small { font-size: 0.833em; }
87) 
88) .caps {
89) 	font-size: 1em;
90) 	text-transform: uppercase;
91) 	margin: 2px 0 5px;
92) }
93) 
Robert Ransom Make pre elements monospace...

Robert Ransom authored 13 years ago

94) pre, code, tt {
Andrew Lewman remove Courier from the list.

Andrew Lewman authored 13 years ago

95)     font-family: Inconsolata, "Lucida Console", "Droid Sans Mono", Cousine, monospace;
Andrew Lewman try out rransom's fixes fro...

Andrew Lewman authored 13 years ago

96) }
97) 
Robert Ransom Undo a bit more of the dama...

Robert Ransom authored 13 years ago

98) sup {
99)     vertical-align: top;
100) }
101) sub {
102)     vertical-align: bottom;
103) }
104) 
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

105) /* NAVIGATION ------------*/
106) 
107) #nav ul { font-size: 1.167em; }
108) 
109)   #nav ul li { list-style: none; }
110)   
111)   #nav ul li a:link,
112)   #nav ul li a:visited {
113)     color: #23300e;
114)     text-decoration: none;
115)     padding: 10px 20px 0;
116)     height: 40px;
117)     float: left;
118)   }
119)   #nav ul li a:hover,
120)   #nav ul li a.active { background: url(../images/bg-nav-hover.jpg) left top repeat-x;}
121)   #nav ul li a.active { font-weight: bold; }
122) 
123) #breadcrumbs a:link,
124) #breadcrumbs a:visited,
125) .meta {
126) 	text-transform: uppercase;
127) 	font-size: 0.833em;
128) 	text-decoration: none;
129) }
130) 
131) .meta a:link,
132) .meta a:visited { text-decoration: none; }
133) 
134) 
135) /* BANNER ------------*/
136) 
137) h1.headline {
138) 	color: #fff;
Andrew Lewman make the headline banner st...

Andrew Lewman authored 13 years ago

139) 	font-size: 3.0em;
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

140) 	line-height: 28px;
141) 	font-weight: normal;
142) 	text-shadow: 1px 1px 2px #23300e;
143) 	float: left;
144) 	width: 360px;
145) 	margin-bottom: 12px;
146) }
147) 
148) p.desc {
149) 	font-size: 1.417em;
150) 	line-height: 20px;
151) 	color: #fff;
152) 	text-shadow: 1px 1px 2px #23300e;
153) 	width: 360px;
154) 	float: left;
155) }
156) 
157) #banner ul {
158) 	color: #fff;
159) 	text-shadow: 1px 1px 2px #366b32;
160) 	line-height: 16px;
161) 	font-size: 1.167em;
162) }
163) 
164) #banner .incorrect a:link,
165) #banner .incorrect a:visited {
166) 	color: #fff;
167) 	font-size: 0.833em;
168) 	text-align: right;
169) 	width: 315px;
170) 	float: left;
171) 	padding-right: 45px;
172) 	line-height: 0;
173) 	margin: -3px 0 0;
174) }
175) 
176) /* SIDENAV ------------*/
177) 
178) #sidenav ul {
179) 	margin-bottom: 0;
180) 	padding-left: 0;
181) 	list-style: none;
182) }
183) 
184) #sidenav ul li ul li { font-size: 0.917em; }
185) 
186) #sidenav ul li a:link,
187) #sidenav ul li a:visited {
188) 	text-decoration: none;
189) 	color: #23300e;
190) 	line-height: 18px;
191) }
192) 
193) #sidenav ul li a.active,
194) #sidenav ul li.active,
195) #sidenav ul li a:hover { font-weight: bold; }
196) 
197) .sidenav-sub ul {
198) 	padding-left: 0;
199) 	list-style: none;
200) 	margin-bottom: 0;
201) }
202) 
203) .sidenav-sub ul li a:link,
204) .sidenav-sub ul li a:visited {
205) 	text-decoration: none;
206) 		line-height: 16px;
207) }
208) 
209) /* TABLE ------------*/
210) 
211) table h2,
212) #home-our-projects h2,
213) #home-announcements h2 {
214) 	background: url(../images/table-head.jpg) left top repeat-x;
215) 	color: #f6f6ed;
216) 	padding-left: 10px;
217) 	margin: 0;
218) }
Andrew Lewman apply patch from jeremy to...

Andrew Lewman authored 12 years ago

219) 
220) .project p {
221)   line-height: 18px;
222) }
223) 
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

224) table h3 { font-size: 1.167em; }
225) table p {
226) 	margin: 0; 
227) }
228) 
229) table .name {
230) 	font-size: 1.5em;
231) 	font-weight: bold;
232) 	color: #23300e;
233) }
234) 
235) .calendar .month { color: #fff; }
236) .calendar .day {
237) 	font-weight: bold;
238) 	color: #4d4d4d;
239) 	font-size: 1.429em;
240) 	line-height: 32px;
241) }
242) 
243) /* DL TABLE ------------*/
244) 
245) .column-title {
246) 	font-weight: bold;
247) 	color: #23300e;
248) }
249) 
250) /* MISC ------------*/
251) 
252) .continue a:link,
253) .continue a:visited {
254) 	float: right;
255) 	font-weight: bold;
256) 	text-decoration: none;
257) }
258) 
259) .paypal {
260) 	font-size: 1.167em;
261) 	color: #666;
262) }
263) 
Andrew Lewman add dt and dd to the css ty...

Andrew Lewman authored 13 years ago

264) .amazon {
265) 	font-size: 1.167em;
266) 	color: #666;
267) }
268) 
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

269) .warning p {
270) 	color: #3a3a3a;
271) 	margin-bottom: 0;
272) 	line-height: 20px;
273) }
274) 
275) .focus .name {
276) 	font-size: 1.5em;
277) 	font-weight: bold;
278) 	color: #4e6a20;
279) }
280) .focus p { margin: 0; }
281) 
282) .title {
283) 	font-size: 1.167em;
284) 	font-weight: bold;
285) 	color: #f6f6ed;
286) }
287) 
288) 	.title a:link,
289) 	.title a:visited {
290) 		font-weight: bold;
291) 		color: #f6f6ed;
292) 	}
293) 	.title a:hover { color: #f6f6ed; }
294) 	
295) .or {
296) 	color: #c0e07a;
297) 	font-size: 3em;
298) 	padding: 30px 20px;
299) 	font-weight: bold;
300) }	
301) 
302) .fakeol {
303) 	font-family: Georgia, "Times New Roman", Times, serif;
304) 	font-size: 3em;
305) 	color: #e4c07e;
306) 	vertical-align: text-top;
307) 	float: left;
308) 	width: 40px;
309) }
310) 
311) .instructions {
312) 	margin-bottom: 18px;
313) 	float: left;
314) 	width: 620px;
315) 	line-height: 18px;
316) }
317) 
318) .current-relay,
319) .target-relay {
320) 	font-family: Georgia, "Times New Roman", Times, serif;
321) 	font-size: 2.5em;
322) }
323) .current-relay { color: #695279; }
324) .target-relay { color: #4e6a20; }
325) 
326) 
327) /* FOOTER ------------*/
328) 
329) #footer p,
330) #footer ul {
331) 	font-size: 0.833em;
332) }
333) #footer ul {
334) 	padding-left: 0;
335) 	list-style: none;
336) }	
337) 
338) #footer ul li {
339) 	line-height: 18px;
340) }
341)