| 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 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 text-decoration: none; | 39 text-decoration: none; |
| 40 text-transform: uppercase; | 40 text-transform: uppercase; |
| 41 } | 41 } |
| 42 | 42 |
| 43 #button-container { | 43 #button-container { |
| 44 position: fixed; | 44 position: fixed; |
| 45 text-align: right; | 45 text-align: right; |
| 46 top: calc(70% - 76px /* action bar */ - 69px /* height of content */); | 46 top: calc(70% - 76px /* action bar */ - 69px /* height of content */); |
| 47 width: 100%; | 47 width: 100%; |
| 48 } | 48 } |
| 49 |
| 50 #container.hide { |
| 51 -webkit-transform: scale(0.95); |
| 52 -webkit-transition-property: opacity, -webkit-transform; |
| 53 -webkit-transition-duration: 218ms; |
| 54 opacity: 0; |
| 55 } |
| OLD | NEW |