OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
3 found in the LICENSE file. | 3 found in the LICENSE file. |
4 TODO(mathp): Add some CSS here. | |
5 */ | 4 */ |
| 5 @font-face { |
| 6 font-family: 'Roboto'; |
| 7 font-style: normal; |
| 8 font-weight: 400; |
| 9 src: url(/roboto.woff) format('woff'); |
| 10 } |
| 11 |
| 12 body { |
| 13 font-family: 'Roboto'; |
| 14 font-size: 1em; |
| 15 } |
| 16 |
| 17 p { |
| 18 margin: 1em; |
| 19 text-align: justify; |
| 20 } |
| 21 |
| 22 a { |
| 23 color: black; |
| 24 } |
| 25 |
| 26 .colored { |
| 27 color: rgb(66, 133, 244); |
| 28 } |
| 29 |
| 30 .label { |
| 31 display: inline-block; |
| 32 padding: 0.5em; |
| 33 text-align: center; |
| 34 width: 41%; |
| 35 } |
| 36 |
| 37 .label a { |
| 38 font-weight: bold; |
| 39 text-decoration: none; |
| 40 text-transform: uppercase; |
| 41 } |
OLD | NEW |