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

Side by Side Diff: chrome/browser/resources/supervised_user_block_interstitial.css

Issue 638953002: Supervised user interstitial: Small style changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | chrome/browser/resources/supervised_user_block_interstitial.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 body { 4 body {
5 background-color: rgb(230, 230, 230); 5 background-color: rgb(230, 230, 230);
6 font-family: Helvetica, Arial, sans-serif; 6 font-family: Helvetica, Arial, sans-serif;
7 font-size: 10pt; 7 font-size: 10pt;
8 margin: 50px 40px 20px 40px; 8 margin: 50px 40px 20px 40px;
9 text-align: center; 9 text-align: center;
10 } 10 }
(...skipping 10 matching lines...) Expand all
21 border-bottom: 1px solid rgb(136, 136, 136); 21 border-bottom: 1px solid rgb(136, 136, 136);
22 border-radius: 3px; 22 border-radius: 3px;
23 box-shadow: 0 2px 2px rgb(170, 170, 170); 23 box-shadow: 0 2px 2px rgb(170, 170, 170);
24 color: black; 24 color: black;
25 } 25 }
26 26
27 h1 { 27 h1 {
28 color: rgb(102, 102, 102); 28 color: rgb(102, 102, 102);
29 font-size: 1.3em; 29 font-size: 1.3em;
30 font-weight: normal; 30 font-weight: normal;
31 margin: 5px 0 30px 0; 31 margin: 5px 0 25px 0;
32 } 32 }
33 33
34 a { 34 a {
35 color: rgb(17, 85, 204); 35 color: rgb(17, 85, 204);
36 text-decoration: none; 36 text-decoration: none;
37 } 37 }
38 38
39 .error-img { 39 .error-img {
40 /* Can't access chrome:// urls from an untrusted renderer process, so embed 40 /* Can't access chrome:// urls from an untrusted renderer process, so embed
41 * the resource manually. */ 41 * the resource manually. */
(...skipping 26 matching lines...) Expand all
68 -webkit-user-select: none; 68 -webkit-user-select: none;
69 background-image: linear-gradient(rgb(246, 246, 246) 5%, 69 background-image: linear-gradient(rgb(246, 246, 246) 5%,
70 rgb(239, 239, 239) 50%, 70 rgb(239, 239, 239) 50%,
71 rgb(221, 221, 221)); 71 rgb(221, 221, 221));
72 border: 1px solid rgb(209, 209, 211); 72 border: 1px solid rgb(209, 209, 211);
73 border-bottom: 1px solid rgb(193, 193, 195); 73 border-bottom: 1px solid rgb(193, 193, 195);
74 border-radius: 2px; 74 border-radius: 2px;
75 box-shadow: inset 0 1px 0 rgb(255, 255, 255); 75 box-shadow: inset 0 1px 0 rgb(255, 255, 255);
76 color: rgb(102, 102, 102); 76 color: rgb(102, 102, 102);
77 font-weight: bold; 77 font-weight: bold;
78 margin: 5px 0; 78 margin: 5px 3px;
79 padding: 8px 13px; 79 padding: 8px 13px;
80 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); 80 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
81 } 81 }
82 82
83 #back-button {
84 background-image: linear-gradient(rgb(84, 153, 244) 5%,
85 rgb(82, 148, 242) 50%,
86 rgb(75, 133, 241));
87 border: 1px solid rgb(81, 135, 223);
88 border-bottom: 1px solid rgb(56, 112, 207);
89 box-shadow: inset 0 1px 0 rgb(95, 168, 247);
90 color: rgb(255, 255, 255);
91 text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
92 }
93
94 @media (min-width: 376px) { 83 @media (min-width: 376px) {
95 #back-button { 84 #back-button {
96 width: 100px; 85 width: 100px;
97 } 86 }
98 } 87 }
99 88
100 @media (max-width: 375px) { 89 @media (max-width: 375px) {
101 button { 90 button {
102 width: 100%; 91 width: 100%;
103 } 92 }
104 } 93 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/supervised_user_block_interstitial.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698