Home | History | Annotate | Download | only in login
      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 
      6 #terms-of-service {
      7   padding: 70px 17px 21px;
      8 }
      9 
     10 #tos-container {
     11   border: 1px solid #d9d9d9;
     12   height: 222px;
     13 }
     14 
     15 #terms-of-service .step-contents {
     16   -webkit-margin-after: 49px;
     17   -webkit-margin-start: 32px;
     18 }
     19 
     20 #terms-of-service h1 {
     21   font-size: 100%;
     22   font-weight: normal;
     23   margin: 0 0 8px 0;
     24   width: 630px;
     25 }
     26 
     27 #tos-subheading {
     28   color: rgb(100, 100, 100);
     29   font-size: 11px;
     30   margin: 0 0 27px 0;
     31   width: 630px;
     32 }
     33 
     34 #tos-container {
     35   -webkit-margin-end: -2px;
     36   overflow: auto;
     37   width: 630px;
     38 }
     39 
     40 #tos-content {
     41   padding: 8px 13px;
     42 }
     43 
     44 #terms-of-service h2 {
     45   font-size: 100%;
     46   margin: 0 0 13px 0;
     47 }
     48 
     49 #tos-content-main {
     50   white-space: pre-wrap;
     51 }
     52 
     53 #tos-loading,
     54 #tos-error {
     55   -webkit-align-items: center;
     56   -webkit-flex-direction: column;
     57   -webkit-justify-content: center;
     58   display: none;
     59   height: 100%;
     60   width: 100%;
     61 }
     62 
     63 #terms-of-service p {
     64   color: rgb(100, 100, 100);
     65   font-size: 12px;
     66   margin: 0;
     67   text-align: center;
     68 }
     69 
     70 #terms-of-service p + p {
     71   margin-top: 4px;
     72 }
     73 
     74 .step.tos-loading #tos-content {
     75   display: none;
     76 }
     77 
     78 .step.tos-loading #tos-loading {
     79   display: -webkit-flex;
     80 }
     81 
     82 .step.error #tos-content,
     83 .step.error #tos-accept-button {
     84   display: none;
     85 }
     86 
     87 .step.error #tos-error {
     88   display: -webkit-flex;
     89 }
     90 
     91 #terms-of-service.error #tos-back-button {
     92   -webkit-margin-end: 1px;
     93 }
     94