| 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 a { | 5 a { |
| 6 color: #585858; | 6 color: #585858; |
| 7 } | 7 } |
| 8 | 8 |
| 9 .bad-clock .icon { | 9 .bad-clock .icon { |
| 10 background-image: -webkit-image-set( | 10 background-image: -webkit-image-set( |
| 11 url(images/1x/clock.png) 1x, | 11 url(images/1x/clock.png) 1x, |
| 12 url(images/2x/clock.png) 2x); | 12 url(images/2x/clock.png) 2x); |
| 13 } | 13 } |
| 14 | 14 |
| 15 body { | 15 body { |
| 16 background-color: #f7f7f7; | 16 background-color: #f7f7f7; |
| 17 color: #646464; | 17 color: #646464; |
| 18 } | 18 } |
| 19 | 19 |
| 20 body.safe-browsing { | 20 body.safe-browsing { |
| 21 background-color: rgb(206, 52, 38); | 21 background-color: rgb(206, 52, 38); |
| 22 color: white; | 22 color: white; |
| 23 } | 23 } |
| 24 | 24 |
| 25 button { | 25 button { |
| 26 -webkit-user-select: none; | 26 -webkit-user-select: none; |
| 27 background: rgb(76, 142, 250); | 27 background: rgb(66, 133, 244); |
| 28 border: 0; | 28 border: 0; |
| 29 border-radius: 2px; | 29 border-radius: 2px; |
| 30 box-sizing: border-box; | 30 box-sizing: border-box; |
| 31 color: #fff; | 31 color: #fff; |
| 32 cursor: pointer; | 32 cursor: pointer; |
| 33 float: right; | 33 float: right; |
| 34 font-size: .875em; | 34 font-size: .875em; |
| 35 margin: 0; | 35 margin: 0; |
| 36 padding: 10px 24px; | 36 padding: 10px 24px; |
| 37 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1); | 37 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1); |
| (...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 width: 100%; | 626 width: 100%; |
| 627 } | 627 } |
| 628 } | 628 } |
| 629 | 629 |
| 630 @media (max-width: 239px) and (orientation: portrait) { | 630 @media (max-width: 239px) and (orientation: portrait) { |
| 631 .nav-wrapper { | 631 .nav-wrapper { |
| 632 padding-left: 0; | 632 padding-left: 0; |
| 633 padding-right: 0; | 633 padding-right: 0; |
| 634 } | 634 } |
| 635 } | 635 } |
| OLD | NEW |