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

Side by Side Diff: remoting/webapp/main.css

Issue 9903008: Added first-run infographic screens for IT2Me and Me2Me. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 5
6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, 6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, 7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, 8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl,
9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, 9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
10 tfoot, thead, tr, th, td, button { 10 tfoot, thead, tr, th, td, button {
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 } 212 }
213 213
214 h1.icon-label { 214 h1.icon-label {
215 vertical-align: 14px; 215 vertical-align: 14px;
216 margin-bottom: 60px; 216 margin-bottom: 60px;
217 font-size: 28px; 217 font-size: 28px;
218 font-weight: 300; 218 font-weight: 300;
219 color: #aaa; 219 color: #aaa;
220 font-family: "Open sans", "Ariel", sans-serif; 220 font-family: "Open sans", "Ariel", sans-serif;
221 line-height: 24px; 221 line-height: 24px;
222 display: inline-block;
223 margin-__MSG_@@bidi_start_edge__: 10px;
222 } 224 }
223 225
224 h2 { 226 h2 {
225 font-size: 16px; 227 font-size: 16px;
226 line-height:24px; 228 line-height:24px;
227 font-weight: normal; 229 font-weight: normal;
228 color: #222; 230 color: #222;
229 } 231 }
230 232
231 section > h2 { 233 section > h2 {
(...skipping 16 matching lines...) Expand all
248 } 250 }
249 251
250 section { 252 section {
251 width: 690px; 253 width: 690px;
252 margin: 30px auto; 254 margin: 30px auto;
253 border: 1px solid #e5e5e5; 255 border: 1px solid #e5e5e5;
254 background: #f9f9f9; 256 background: #f9f9f9;
255 padding: 20px 30px 20px 30px; 257 padding: 20px 30px 20px 30px;
256 border-radius: 3px; 258 border-radius: 3px;
257 box-shadow: 0 2px 5px rgba(0,0,0,0.07); 259 box-shadow: 0 2px 5px rgba(0,0,0,0.07);
260 position: relative;
258 } 261 }
259 262
260 263
261 .access-code-digit-group { 264 .access-code-digit-group {
262 /* 265 /*
263 Used for each of the four-digit components of the access code as 266 Used for each of the four-digit components of the access code as
264 displayed by the host. 267 displayed by the host.
265 */ 268 */
266 padding: 0px 6px; 269 padding: 0px 6px;
267 } 270 }
(...skipping 29 matching lines...) Expand all
297 .error-state { 300 .error-state {
298 background-image: url('icon_warning.png'); 301 background-image: url('icon_warning.png');
299 background-repeat: no-repeat; 302 background-repeat: no-repeat;
300 background-position: top __MSG_@@bidi_start_edge__; 303 background-position: top __MSG_@@bidi_start_edge__;
301 padding-__MSG_@@bidi_start_edge__: 30px; 304 padding-__MSG_@@bidi_start_edge__: 30px;
302 padding-top: 5px; 305 padding-top: 5px;
303 color: #900; 306 color: #900;
304 } 307 }
305 308
306 .expiring { 309 .expiring {
307 color: #900 !important; 310 color: #900 !important;
308 } 311 }
309 312
310 .icon-label { 313 .infographic {
311 display: inline-block; 314 position: absolute;
312 vertical-align: top; 315 right: 22px;
313 margin-__MSG_@@bidi_start_edge__: 10px; 316 top: 24px;
314 } 317 }
315 318
319 .infographic-description {
320 height: 80px;
321 width: 400px;
322 padding-top: 2em;
323 };
324
316 .information-box { 325 .information-box {
317 background-color: #f9edbe; 326 background-color: #f9edbe;
318 border: 1px solid #f0c36d; 327 border: 1px solid #f0c36d;
319 -webkit-border-radius: 2px; 328 -webkit-border-radius: 2px;
320 -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2); 329 -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
321 color: #222; 330 color: #222;
322 padding: 8px 16px; 331 padding: 8px 16px;
323 text-align: center; 332 text-align: center;
324 font-size: 12px; 333 font-size: 12px;
325 } 334 }
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 box-sizing: border-box; 523 box-sizing: border-box;
515 } 524 }
516 525
517 /* 526 /*
518 * Setting hidden on elements that match some rule overriding 'display' doesn't 527 * Setting hidden on elements that match some rule overriding 'display' doesn't
519 * do what you would expect unless this is made explicit (and !important). 528 * do what you would expect unless this is made explicit (and !important).
520 */ 529 */
521 [hidden] { 530 [hidden] {
522 display: none !important; 531 display: none !important;
523 } 532 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698