3736f8860a386f949a993bad487cf5f5cdff5f6f
Roger Dingledine first cut of moving to ren'...

Roger Dingledine authored 19 years ago

1) /*
2) BEGIN custom styles
3) */
4) 
5) /* 
6) * the page's main body style, including background
7) */
8) 
9) body {
10) 	background-color: #FFFFFF;
11) 	margin-top: 0px;
12) 	font-family: Arial, Helvetica, sans-serif;
13) 	font-size: 10pt;
14) 	font-style: normal;
15) 	color: #000000;
16) }
17) 
18) /* 
19) * this centers the page
20) */
21) 
22) .center	{ 
23) 	text-align: center;
24) 	background-color: white;
25) 	margin-left: auto;
26) 	margin-right: auto;
27) 	width: 730px;
28) 
29) }
30) 
31) .center table { 
32) 	margin-left: auto;
33) 	margin-right: auto;
34) 	text-align: left;
35) }
36) 
37) /* 
38) * for the shadow box
39) */
40) 
41) 
42) TABLE.shadowbox {
43) 	width: 788px;
44) /*	margin-left: auto;
45) 	margin-right: auto;
46) 	margin: 0; */
47) 	border-collapse: collapse; 
48) 	padding: 0;
49) 	margin-bottom: 2em;
50) }
51) 
52) TABLE.shadowbox TD {
53) 	margin: 0;
54) 	padding: 0;
55) }
56) 
57) /* 
58) * for the shadow edges
59) 
60) TD.leftedge {
61) 	width: 9px;
62) 	background: url("images/leftedge.png");
63) }
64) 
65) TD.rightedge {
66) 	width: 9px;
67) 	background: url("images/rightedge.png");
68) }
69) 
70) TD.bottomleft {
71) 	width: 9px;
72) 	height: 7px;
73) 	background: url("images/bottomleft.png");
74) 	background-repeat: no-repeat;
75) }
76) 
77) TD.bottomright {
78) 	width: 9px;
79) 	height: 7px;
80) 	background: url("images/bottomright.png");
81) 	background-repeat: no-repeat;
82) }
83) 
84) TD.bottomedge {
85) 	height: 7px;
86) 	background: url("images/bottomedge.png");
87) 	background-repeat: repeat-x;
88) }
89) 
90) TD.main {
91) 	background-color: white;
92) 	width: 770px;
93) }
94) */
95) 
96) /*
97) * The banner
98) */
99) 
100) DIV.banner {
101) 	background-image: url("images/tor_mast.png");
102) 	background-repeat: no-repeat;
103) 	text-align: left;
104) 	height: 79px;
105) 	width: 730px;
106) 	padding-bottom: 10px;
107) }
108) 
109) TABLE.table-banner {
110) 	float: right;
111) 	width: 730px;
112) 
113) }
114) 
Roger Dingledine some more tweaks while play...

Roger Dingledine authored 19 years ago

115) div.bottom {
116)         font-size: 8px;
117)         margin-top: 2cm;
118)         margin-left: 1em;
119)         margin-right: 1em;
120)         text-align: right;
121) }
122) 
Roger Dingledine first cut of moving to ren'...

Roger Dingledine authored 19 years ago

123) /* The sidebar */
124) DIV.sidebar {
125) 	float: right;
126) 	padding-top: 0px;
127) 	padding-right: 10px;
128) 	padding-bottom: 15px;
129) 	padding-left: 10px;
130) 	overflow: auto;
Nick Mathewson Make scrollbar at bottom of...

Nick Mathewson authored 19 years ago

131) 	width: 263px;
Roger Dingledine first cut of moving to ren'...

Roger Dingledine authored 19 years ago

132) 	text-align: center;
133) }
134) 
Roger Dingledine make the current page we're...

Roger Dingledine authored 19 years ago

135) a.current {
136) 	color: orange;
137) }
Roger Dingledine first cut of moving to ren'...

Roger Dingledine authored 19 years ago

138) 
139) /* The links */
140) TD.links {
141) 	font-size: 8pt;
142) 	color: white;
143) 	font-weight: bold;
144) 	text-align: right;
145) 	vertical-align: top;
146) 	padding: 58px 15px 0 0;
147) }
148) 
149) TD.links A:link, TD.links A:visited {
150) 	color: white;
151) 	text-decoration: none;
152) 	font-size: 11px;
153) }
154) 
155) TD.links A:hover {
156) 	color: orange;
157) 	text-decoration: underline;
158) 
159) }
160) 
161) /* The main column (left text) */
162) 
163) DIV.main-column {
164) /*	padding-right: 280px; */
165) 	padding: 0 0 10px 10px;
166) 	text-indent: 0pt;
167) 	font-size: 10pt;
168) 	text-align: left;
169) }
170) 
171) /* 
172)  * Formatting styles
173)  */
174) H1 {
175) 	font-size: 12pt;
176) 	margin-bottom: 0.5em;	
177) }
178) 
179) H2
180) {
181) 	font-size: 12pt;
182) 	margin-bottom: 0em;
183) 	font-weight: bold;
184) 	margin-top: 0;
185) }
186) 
187) P {
188) 	margin-top: 0;
189) 	margin-bottom: 1em;
190) }
191) 
192) A:link {
193) 	color: blue;
194) 	font-size: 10pt;
195) 	text-decoration: none;
196) }
197) 
198) A:visited {
199) 	color: purple; 
200) 	font-size: 10pt;
201) 	text-decoration: none;
202) }
203) 
204) TD {
205) 	vertical-align: top;
206) }
207) 
Roger Dingledine commit the smalllink class...

Roger Dingledine authored 19 years ago

208) A.smalllink {
209) 	font-size: 8px;
210) }
211)