Chromium Code Reviews| 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 body { | 9 body { |
| 10 background: rgb(247, 247, 247); | 10 background-color: rgb(247, 247, 247); |
|
Dan Beam
2014/06/17 21:38:34
nit: #hex
felt
2014/06/17 23:16:37
Done.
| |
| 11 color: #585858; | 11 color: #585858; |
| 12 font-size: 125%; | 12 font-size: 125%; |
| 13 } | 13 } |
| 14 | 14 |
| 15 body.safe-browsing { | 15 body.safe-browsing { |
| 16 background: rgb(217, 69, 61); | 16 background-color: rgb(206, 52, 38); |
| 17 color: rgb(255, 255, 255); | 17 color: white; |
| 18 } | 18 } |
| 19 | 19 |
| 20 button { | 20 button { |
| 21 background: rgb(76, 142, 250); | 21 background: rgb(76, 142, 250); |
| 22 border: 0; | 22 border: 0; |
| 23 border-radius: 2px; | 23 border-radius: 2px; |
| 24 box-sizing: border-box; | 24 box-sizing: border-box; |
| 25 color: #fff; | 25 color: #fff; |
| 26 cursor: pointer; | 26 cursor: pointer; |
| 27 float: right; | 27 float: right; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 101 | 101 |
| 102 .small-link { | 102 .small-link { |
| 103 color: #696969; | 103 color: #696969; |
| 104 font-size: .875em; | 104 font-size: .875em; |
| 105 } | 105 } |
| 106 | 106 |
| 107 .safe-browsing a, | 107 .safe-browsing a, |
| 108 .safe-browsing #details, | 108 .safe-browsing #details, |
| 109 .safe-browsing #details-button, | 109 .safe-browsing #details-button, |
| 110 .safe-browsing h1 { | 110 .safe-browsing h1 { |
| 111 color: rgb(255, 255, 255); | 111 color: white; |
| 112 } | 112 } |
| 113 | 113 |
| 114 .safe-browsing button { | 114 .safe-browsing button { |
| 115 background: rgba(255, 255, 255, 0.15); | 115 background-color: rgb(206, 52, 38); |
| 116 border: 1px solid white; | |
| 117 } | |
| 118 | |
| 119 .safe-browsing button:active { | |
| 120 background-color: rgb(206, 52, 38); | |
| 121 border: 1px solid rgb(255, 255, 255, .6); | |
|
Dan Beam
2014/06/17 21:38:34
nit: border-color
felt
2014/06/17 23:16:37
Done.
| |
| 122 } | |
| 123 | |
| 124 .safe-browsing button:hover { | |
| 125 box-shadow: 0 2px 3px rgba(0, 0, 0, .50); | |
|
Dan Beam
2014/06/17 21:38:34
nit: .5
felt
2014/06/17 23:16:37
Done.
| |
| 116 } | 126 } |
| 117 | 127 |
| 118 .safe-browsing .icon { | 128 .safe-browsing .icon { |
| 119 background-image: -webkit-image-set( | 129 background-image: -webkit-image-set( |
| 120 url('../safe_browsing/images/1x/stop_sign.png') 1x, | 130 url('../safe_browsing/images/1x/stop_sign.png') 1x, |
| 121 url('../safe_browsing/images/2x/stop_sign.png') 2x); | 131 url('../safe_browsing/images/2x/stop_sign.png') 2x); |
| 122 } | 132 } |
| 123 | 133 |
| 124 .ssl .icon { | 134 .ssl .icon { |
| 125 background-image: -webkit-image-set( | 135 background-image: -webkit-image-set( |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 163 } | 173 } |
| 164 | 174 |
| 165 .interstitial-wrapper { | 175 .interstitial-wrapper { |
| 166 padding: 0 5%; | 176 padding: 0 5%; |
| 167 } | 177 } |
| 168 | 178 |
| 169 .nav-wrapper { | 179 .nav-wrapper { |
| 170 margin-top: 30px; | 180 margin-top: 30px; |
| 171 } | 181 } |
| 172 } | 182 } |
| OLD | NEW |