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( |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 body .nav-wrapper { | 363 body .nav-wrapper { |
364 background: #f7f7f7; | 364 background: #f7f7f7; |
365 bottom: 0; | 365 bottom: 0; |
366 box-shadow: 0 -22px 40px rgb(247, 247, 247); | 366 box-shadow: 0 -22px 40px rgb(247, 247, 247); |
367 left: 0; | 367 left: 0; |
368 margin: 0; | 368 margin: 0; |
369 max-width: 736px; | 369 max-width: 736px; |
370 padding-left: 24px; | 370 padding-left: 24px; |
371 padding-right: 24px; | 371 padding-right: 24px; |
372 position: fixed; | 372 position: fixed; |
373 z-index: 1; | 373 z-index: 2; |
374 } | 374 } |
375 | 375 |
376 body.safe-browsing .nav-wrapper { | 376 body.safe-browsing .nav-wrapper { |
377 background: rgb(206, 52, 38); | 377 background: rgb(206, 52, 38); |
378 box-shadow: 0 -22px 40px rgb(206, 52, 38); | 378 box-shadow: 0 -22px 40px rgb(206, 52, 38); |
379 } | 379 } |
380 | 380 |
381 .interstitial-wrapper { | 381 .interstitial-wrapper { |
382 max-width: 736px; | 382 max-width: 736px; |
383 } | 383 } |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
652 width: 100%; | 652 width: 100%; |
653 } | 653 } |
654 } | 654 } |
655 | 655 |
656 @media (max-width: 239px) and (orientation: portrait) { | 656 @media (max-width: 239px) and (orientation: portrait) { |
657 .nav-wrapper { | 657 .nav-wrapper { |
658 padding-left: 0; | 658 padding-left: 0; |
659 padding-right: 0; | 659 padding-right: 0; |
660 } | 660 } |
661 } | 661 } |
OLD | NEW |