| 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: 'Roboto2'; | 6 font-family: 'Roboto2'; |
| 7 font-weight: 400; | 7 font-weight: 400; |
| 8 src: local('Roboto'), local('Roboto2-Regular'), | 8 src: local('Roboto'), local('Roboto2-Regular'), |
| 9 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff'); | 9 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff'); |
| 10 } | 10 } |
| 11 | 11 |
| 12 body { | 12 body { |
| 13 color: #414141; |
| 13 font-family: 'Roboto2', sans-serif; | 14 font-family: 'Roboto2', sans-serif; |
| 14 font-size: 1em; | |
| 15 margin: 0; | 15 margin: 0; |
| 16 } | 16 } |
| 17 | 17 |
| 18 p { | |
| 19 margin: 1.5em; | |
| 20 text-align: justify; | |
| 21 } | |
| 22 | |
| 23 a { | 18 a { |
| 24 color: black; | 19 color: #414141; |
| 25 } | 20 } |
| 26 | 21 |
| 27 .colored { | 22 .colored { |
| 28 color: rgb(66, 133, 244); | 23 color: rgb(66, 133, 244); |
| 29 } | 24 } |
| 30 | 25 |
| 31 .label { | 26 .label { |
| 32 display: inline-block; | 27 display: inline-block; |
| 33 padding: 1.5em; | 28 font-size: 14px; |
| 29 font-weight: bold; |
| 30 padding: 28px; |
| 34 white-space: nowrap; | 31 white-space: nowrap; |
| 35 } | 32 } |
| 36 | 33 |
| 37 .label a { | 34 .label a { |
| 38 font-weight: bold; | |
| 39 text-decoration: none; | 35 text-decoration: none; |
| 40 text-transform: uppercase; | 36 text-transform: uppercase; |
| 41 } | 37 } |
| 42 | 38 |
| 43 #button-container { | 39 #button-container { |
| 44 position: fixed; | |
| 45 text-align: right; | 40 text-align: right; |
| 46 top: calc(70% - 76px /* action bar */ - 69px /* height of content */); | |
| 47 width: 100%; | 41 width: 100%; |
| 48 } | 42 } |
| 49 | 43 |
| 50 #container.hide { | 44 #container.hide { |
| 51 -webkit-transform: scale(0.95); | 45 -webkit-transform: scale(0.95); |
| 46 -webkit-transition-duration: 218ms; |
| 52 -webkit-transition-property: opacity, -webkit-transform; | 47 -webkit-transition-property: opacity, -webkit-transform; |
| 53 -webkit-transition-duration: 218ms; | |
| 54 opacity: 0; | 48 opacity: 0; |
| 55 } | 49 } |
| 50 |
| 51 #description { |
| 52 font-size: 16px; |
| 53 line-height: 1.4em; |
| 54 margin: 32px 16px 4px 16px; |
| 55 } |
| 56 |
| 57 #heading { |
| 58 font-size: 24px; |
| 59 letter-spacing: 1px; |
| 60 margin-top: 0; |
| 61 text-align: center; |
| 62 } |
| OLD | NEW |