Home | History | Annotate | Download | only in first_run
      1 /**
      2  * Copyright 2013 The Chromium Authors. All rights reserved.
      3  * Use of this source code is governed by a BSD-style license that can be
      4  * found in the LICENSE file.
      5  */
      6 
      7 .step {
      8   background: white;
      9   color: #8c8c8c;
     10   padding: 0;
     11 }
     12 
     13 .step h1 {
     14   color: #333;
     15   font-weight: normal;
     16 }
     17 
     18 .step p {
     19   line-height: 1.5;
     20 }
     21 
     22 .step button.blue-button {
     23   color: white;
     24 }
     25 
     26 .step button.white-button {
     27   color: black;
     28 }
     29 
     30 .step .controls button {
     31   margin: 0 3px;
     32 }
     33 
     34 .step .controls button:first-of-type {
     35   -webkit-margin-start: 0;
     36 }
     37 
     38 .step .controls button:last-of-type {
     39   -webkit-margin-end: 0;
     40 }
     41