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 */ | 4 */ |
5 @font-face { | 5 @font-face { |
6 font-family: 'Roboto'; | 6 font-family: 'Roboto2'; |
7 font-weight: 400; | 7 font-weight: 400; |
8 src: url(/roboto.woff) format('woff'); | 8 src: local('Roboto'), local('Roboto2-Regular'), |
| 9 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff'); |
9 } | 10 } |
10 | 11 |
11 body { | 12 body { |
12 font-family: 'Roboto'; | 13 font-family: 'Roboto2', sans-serif; |
13 font-size: 1em; | 14 font-size: 1em; |
14 margin: 0; | 15 margin: 0; |
15 } | 16 } |
16 | 17 |
17 p { | 18 p { |
18 margin: 1.5em; | 19 margin: 1.5em; |
19 text-align: justify; | 20 text-align: justify; |
20 } | 21 } |
21 | 22 |
22 a { | 23 a { |
(...skipping 15 matching lines...) Expand all Loading... |
38 text-decoration: none; | 39 text-decoration: none; |
39 text-transform: uppercase; | 40 text-transform: uppercase; |
40 } | 41 } |
41 | 42 |
42 #button-container { | 43 #button-container { |
43 position: fixed; | 44 position: fixed; |
44 text-align: right; | 45 text-align: right; |
45 top: calc(70% - 76px /* action bar */ - 69px /* height of content */); | 46 top: calc(70% - 76px /* action bar */ - 69px /* height of content */); |
46 width: 100%; | 47 width: 100%; |
47 } | 48 } |
OLD | NEW |