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

Side by Side Diff: chrome/browser/resources/ssl/overridable_v2.css

Issue 294343004: New SSL interstitial (behind Finch flag) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style fix Created 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 a {
2 color: rgb(43, 43, 43);
3 }
4
5 body {
6 background: rgb(247, 247, 247);
7 color: rgb(43, 43, 43);
8 font-family: 'Segoe UI', 'Lucida Grande', Tahoma, Arial, sans-serif;
9 font-size: 12pt;
10 line-height: 20pt;
11 }
12
13 button {
14 background: rgb(76, 142, 250);
15 border: 0;
16 border-box: box-sizing;
17 border-radius: 2px;
18 color: #fff;
19 float: right;
20 font-size: 12pt;
21 margin: -6px 0 0;
22 padding: 8px 24px;
23 }
24
25 #details {
26 margin: 40px 0 150px 0;
27 }
28
29 h1 {
30 -webkit-margin-after: 15px;
31 font-size: 22pt;
32 font-weight: normal;
33 line-height: 28px;
34 }
35
36 .hidden {
37 display: none;
38 }
39
40 .icon {
41 background: url(images/lock_red.png) no-repeat;
42 background-size: 100%;
43 height: 69px;
44 margin: 0 0 40px;
45 width: 56px;
46 }
47
48 .interstitial-wrapper {
49 box-sizing: border-box;
50 margin: 10% auto 0;
51 max-width: 582px;
52 width: 100%;
53 }
54
55 .nav-wrapper {
56 margin-top: 60px;
57 }
58
59 .nav-wrapper::after {
60 clear: both;
61 content: '';
62 display: table;
63 width: 100%;
64 }
65
66 p {
67 margin-bottom: 22px;
68 }
69
70 @media (max-width: 700px) {
71 .interstitial-wrapper {
72 padding: 0 10%;
73 }
74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698