Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: components/security_interstitials/core/browser/resources/interstitial_v2.css

Issue 2854263003: Add quiet safe browsing interstitial for WebView (Closed)
Patch Set: Fix unit test Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 {
6 color: #585858;
7 }
8
9 .bad-clock .icon { 5 .bad-clock .icon {
10 background-image: -webkit-image-set( 6 background-image: -webkit-image-set(
11 url(images/1x/clock.png) 1x, 7 url(images/1x/clock.png) 1x,
12 url(images/2x/clock.png) 2x); 8 url(images/2x/clock.png) 2x);
13 } 9 }
14 10
15 body {
16 background-color: #f7f7f7;
17 color: #646464;
18 }
19
20 body.safe-browsing { 11 body.safe-browsing {
21 background-color: rgb(206, 52, 38); 12 background-color: rgb(206, 52, 38);
22 color: white; 13 color: white;
23 } 14 }
24 15
25 button { 16 button {
26 -webkit-user-select: none; 17 -webkit-user-select: none;
27 background: rgb(66, 133, 244); 18 background: rgb(66, 133, 244);
28 border: 0; 19 border: 0;
29 border-radius: 2px; 20 border-radius: 2px;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 65
75 #details { 66 #details {
76 color: #696969; 67 color: #696969;
77 margin: 45px 0 50px; 68 margin: 45px 0 50px;
78 } 69 }
79 70
80 #details p:not(:first-of-type) { 71 #details p:not(:first-of-type) {
81 margin-top: 20px; 72 margin-top: 20px;
82 } 73 }
83 74
84 #details-button {
85 background: inherit;
86 border: 0;
87 float: none;
88 margin: 0;
89 padding: 10px 0;
90 text-transform: uppercase;
91 }
92
93 #details-button:hover { 75 #details-button:hover {
94 box-shadow: inherit; 76 box-shadow: inherit;
95 text-decoration: underline; 77 text-decoration: underline;
96 } 78 }
97 79
98 .error-code { 80 .error-code {
99 color: #646464; 81 color: #646464;
100 font-size: .86667em; 82 font-size: .86667em;
101 text-transform: uppercase; 83 text-transform: uppercase;
102 } 84 }
103 85
104 #error-debugging-info { 86 #error-debugging-info {
105 font-size: 0.8em; 87 font-size: 0.8em;
106 } 88 }
107 89
108 h1 { 90 h1 {
109 color: #333; 91 color: #333;
110 font-size: 1.6em; 92 font-size: 1.6em;
111 font-weight: normal; 93 font-weight: normal;
112 line-height: 1.25em; 94 line-height: 1.25em;
113 margin-bottom: 16px; 95 margin-bottom: 16px;
114 } 96 }
115 97
116 h2 { 98 h2 {
117 font-size: 1.2em; 99 font-size: 1.2em;
118 font-weight: normal; 100 font-weight: normal;
119 } 101 }
120 102
121 .hidden {
122 display: none;
123 }
124
125 html {
126 -webkit-text-size-adjust: 100%;
127 font-size: 125%;
128 }
129
130 .icon { 103 .icon {
131 background-repeat: no-repeat;
132 background-size: 100%;
133 height: 72px; 104 height: 72px;
134 margin: 0 0 40px; 105 margin: 0 0 40px;
135 width: 72px; 106 width: 72px;
136 } 107 }
137 108
138 input[type=checkbox] { 109 input[type=checkbox] {
139 opacity: 0; 110 opacity: 0;
140 } 111 }
141 112
142 input[type=checkbox]:focus ~ .checkbox { 113 input[type=checkbox]:focus ~ .checkbox {
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 width: 100%; 496 width: 100%;
526 } 497 }
527 } 498 }
528 499
529 @media (max-width: 239px) and (orientation: portrait) { 500 @media (max-width: 239px) and (orientation: portrait) {
530 .nav-wrapper { 501 .nav-wrapper {
531 padding-left: 0; 502 padding-left: 0;
532 padding-right: 0; 503 padding-right: 0;
533 } 504 }
534 } 505 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698