OLD | NEW |
1 /* | 1 /* |
2 Copyright 2009 The Go Authors. All rights reserved. | 2 Copyright 2009 The Go Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style | 3 Use of this source code is governed by a BSD-style |
4 license that can be found in the LICENSE file. | 4 license that can be found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 /* ------------------------------------------------------------------------- */ | 7 /* ------------------------------------------------------------------------- */ |
8 /* Styles meant to help page authors achieve beauty. */ | 8 /* Styles meant to help page authors achieve beauty. */ |
9 | 9 |
10 a { | 10 a { |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 | 191 |
192 span.comment { | 192 span.comment { |
193 color: #0000a0; | 193 color: #0000a0; |
194 } | 194 } |
195 | 195 |
196 span.highlight { | 196 span.highlight { |
197 font-weight: bold; | 197 font-weight: bold; |
198 background-color: #ffffa0; | 198 background-color: #ffffa0; |
199 } | 199 } |
200 | 200 |
| 201 /* same style as for gettingStarted */ |
| 202 #menu { |
| 203 margin-top: 1.5em; |
| 204 margin-left: 1.75em; |
| 205 margin-right: 0em; |
| 206 float: right; |
| 207 background-color: #fffff0; |
| 208 padding-left: 1em; |
| 209 padding-right: 1em; |
| 210 padding-bottom: 0.75em; |
| 211 border: 2px solid #ba9836; |
| 212 } |
| 213 |
201 | 214 |
202 /* ------------------------------------------------------------------------- */ | 215 /* ------------------------------------------------------------------------- */ |
203 /* Styles for the frontpage */ | 216 /* Styles for the frontpage */ |
204 | 217 |
205 #gettingStarted { | 218 #gettingStarted { |
206 margin-top: 1.5em; | 219 margin-top: 1.5em; |
207 margin-left: 1.75em; | 220 margin-left: 1.75em; |
208 margin-right: 0em; | 221 margin-right: 0em; |
209 float: right; | 222 float: right; |
210 background-color: #fffff0; | 223 background-color: #fffff0; |
(...skipping 18 matching lines...) Expand all Loading... |
229 | 242 |
230 #frontpage { | 243 #frontpage { |
231 width: 100%; | 244 width: 100%; |
232 } | 245 } |
233 | 246 |
234 #frontpage h3 { | 247 #frontpage h3 { |
235 margin-left: 3em; | 248 margin-left: 3em; |
236 font-size: 1.5em; | 249 font-size: 1.5em; |
237 font-weight: normal; | 250 font-weight: normal; |
238 } | 251 } |
OLD | NEW |