OLD | NEW |
1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 :host { | 5 :host { |
6 bottom: 0; | 6 bottom: 0; |
7 padding: 24px; | 7 padding: 24px; |
8 position: fixed; | 8 position: fixed; |
9 right: 0; | 9 right: 0; |
10 z-index: 3; | 10 z-index: 3; |
11 } | 11 } |
12 | 12 |
13 #zoom-buttons { | 13 #zoom-buttons { |
14 display: inline-block; | 14 display: inline-block; |
15 } | 15 } |
16 | 16 |
17 #main-zoom { | |
18 background-color: rgb(27, 168, 243); | |
19 display: block; | |
20 margin: auto; | |
21 margin-top: 2em; | |
22 overflow: visible; | |
23 } | |
24 | |
25 #fit-to-width-button { | 17 #fit-to-width-button { |
26 display: block; | 18 display: block; |
27 margin: auto; | 19 margin: auto; |
28 margin-top: 2em; | 20 margin-top: 1em; |
29 overflow: visible; | 21 overflow: visible; |
30 } | 22 } |
31 | 23 |
32 #fit-to-page-button { | 24 #fit-to-page-button { |
33 display: block; | 25 display: block; |
34 margin: auto; | 26 margin: auto; |
35 overflow: visible; | 27 overflow: visible; |
36 } | 28 } |
37 | 29 |
OLD | NEW |