Home | History | Annotate | Download | only in ssl
      1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved.
      2  * Use of this source code is governed by a BSD-style license that can be
      3  * found in the LICENSE file. */
      4 
      5 body {
      6   background-color: #444;
      7   color: #555;
      8   margin: 0;
      9   padding: 0 1em;
     10 }
     11 
     12 #box {
     13   background-color: white;
     14   border-top: 9px solid rgb(255, 189, 9);
     15   margin: 40px auto;
     16   max-width: 52em;
     17   min-width: 13em;
     18   padding: 50px 0 30px;
     19   position: relative;
     20 }
     21 
     22 #exit-button {
     23   background-color: rgb(66, 133, 244);
     24   border: none;
     25   border-radius: 3px;
     26   color: white;
     27   font-weight: bold;
     28   margin-top: 15px;
     29   padding: 15px;
     30 }
     31 
     32 h1 {
     33   color: black;
     34   font-size: 160%;
     35   font-weight: normal;
     36   margin: 0 0 .6em 0;
     37 }
     38 
     39 .icon {
     40   position: absolute;
     41 }
     42 
     43 #inner-box {
     44   margin: 0 80px 0 30px;
     45 }
     46 
     47 .main {
     48   margin: 1em 0 0 95px;
     49 }
     50 
     51 #proceed-button {
     52   background-color: rgb(66, 133, 244);
     53   border: none;
     54   border-radius: 3px;
     55   color: white;
     56   font-weight: bold;
     57   margin-top: 5px;
     58   padding: 15px;
     59 }
     60 
     61 .small {
     62   font-size: 87%;
     63   margin: 1em 0 0 95px;
     64 }
     65 
     66 .subtitle {
     67   color: rgb(66, 133, 244);
     68   cursor: pointer;
     69   font-size: 103%;
     70 }
     71 
     72 .title {
     73   margin: 0 0 0 95px;
     74 }
     75 
     76 .twisty {
     77   cursor: pointer;
     78   float: left;
     79   padding-right: 8px;
     80   padding-top: 3px;
     81 }
     82 
     83 #what-to-do {
     84   border-bottom: rgb(240, 240, 240) 2px solid;
     85   padding-bottom: 20px;
     86   padding-top: 2px;
     87 }
     88 
     89 #what-to-do-title {
     90   color: black;
     91   font-size: 110%;
     92 }
     93