Home | History | Annotate | Download | only in gaia_auth
      1 body,div, dl, h1, h2, h3, h4, h5, h6, html, img,
      2 dd, dt, embed, form, object, td, tr, canvas, command, group, mark, meter,
      3 output, progress, summary, audio, time, video {
      4   border: 0;
      5   margin: 0;
      6   padding: 0;
      7 }
      8 html {
      9   background: #fff;
     10   color: #333;
     11   direction: ltr;
     12   font: 81.25% arial, helvetica, sans-serif;
     13   line-height: 1;
     14 }
     15 h1, h2, h3, h4, h5, h6 {
     16   color: #222;
     17   font-size: 1.54em;
     18   font-weight: normal;
     19   line-height: 24px;
     20   margin: 0 0 .46em;
     21 }
     22 strong {
     23   color: #222;
     24 }
     25 body, html {
     26   height: 100%;
     27   min-width: 100%;
     28   position: absolute;
     29 }
     30 .wrapper {
     31   min-height: 100%;
     32   position: relative;
     33 }
     34 .content {
     35   padding: 0 44px;
     36 }
     37 .main {
     38   margin: 0 auto;
     39   padding-bottom: 100px;
     40   padding-top: 23px;
     41   width: 650px;
     42 }
     43 button, input, select, textarea {
     44   font-family: inherit;
     45   font-size: inherit;
     46 }
     47 input[type=email],
     48 input[type=number],
     49 input[type=password],
     50 input[type=text],
     51 input[type=url] {
     52   -webkit-border-radius: 1px;
     53   -webkit-box-sizing: border-box;
     54   background: #fff;
     55   border: 1px solid #d9d9d9;
     56   border-radius: 1px;
     57   border-top: 1px solid #c0c0c0;
     58   box-sizing: border-box;
     59   display: inline-block;
     60   height: 29px;
     61   margin: 0;
     62   padding-left: 8px;
     63 }
     64 input[type=email]:hover,
     65 input[type=number]:hover,
     66 input[type=password]:hover,
     67 input[type=text]:hover,
     68 input[type=url]:hover {
     69   -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
     70   border: 1px solid #b9b9b9;
     71   border-top: 1px solid #a0a0a0;
     72   box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
     73 }
     74 input[type=email]:focus,
     75 input[type=number]:focus,
     76 input[type=password]:focus,
     77 input[type=text]:focus,
     78 input[type=url]:focus {
     79   -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
     80   border: 1px solid #4d90fe;
     81   box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
     82   outline: none;
     83 }
     84 input[type=email][disabled=disabled],
     85 input[type=number][disabled=disabled],
     86 input[type=password][disabled=disabled],
     87 input[type=text][disabled=disabled],
     88 input[type=url][disabled=disabled] {
     89   background: #f5f5f5;
     90   border: 1px solid #e5e5e5;
     91 }
     92 input[type=email][disabled=disabled]:hover,
     93 input[type=number][disabled=disabled]:hover,
     94 input[type=password][disabled=disabled]:hover,
     95 input[type=text][disabled=disabled]:hover,
     96 input[type=url][disabled=disabled]:hover {
     97   -webkit-box-shadow: none;
     98   box-shadow: none;
     99 }
    100 .g-button {
    101   -webkit-border-radius: 2px;
    102   -webkit-transition: all 218ms;
    103   -webkit-user-select: none;
    104   background-color: #f5f5f5;
    105   background-image: linear-gradient(to bottom, #f5f5f5, #f1f1f1);
    106   border: 1px solid rgba(0,0,0,0.1);
    107   border-radius: 2px;
    108   color: #555;
    109   cursor: default;
    110   display: inline-block;
    111   font-size: 11px;
    112   font-weight: bold;
    113   height: 27px;
    114   line-height: 27px;
    115   min-width: 54px;
    116   padding: 0 8px;
    117   text-align: center;
    118   transition: all 218ms;
    119   user-select: none;
    120 }
    121 *+html .g-button {
    122   min-width: 70px;
    123 }
    124 button.g-button,
    125 input[type=submit].g-button {
    126   height: 29px;
    127   line-height: 29px;
    128   margin: 0;
    129   vertical-align: bottom;
    130 }
    131 *+html button.g-button,
    132 *+html input[type=submit].g-button {
    133   overflow: visible;
    134 }
    135 .g-button:hover {
    136   -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    137   -webkit-transition: all 0;
    138   background-color: #f8f8f8;
    139   background-image: linear-gradient(to bottom, #f8f8f8, #f1f1f1);
    140   border: 1px solid #c6c6c6;
    141   box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    142   color: #333;
    143   text-decoration: none;
    144   transition: all 0;
    145 }
    146 .g-button:active {
    147   -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    148   background-color: #f6f6f6;
    149   background-image: linear-gradient(to bottom, #f6f6f6, #f1f1f1);
    150   box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    151 }
    152 .g-button:visited {
    153   color: #666;
    154 }
    155 .g-button-submit {
    156   background-color: #4d90fe;
    157   background-image: linear-gradient(to bottom, #4d90fe, #4787ed);
    158   border: 1px solid #3079ed;
    159   color: #fff;
    160   text-shadow: 0 1px rgba(0,0,0,0.1);
    161 }
    162 .g-button-submit:hover {
    163   background-color: #357ae8;
    164   background-image: linear-gradient(to bottom, #4d90fe, #357ae8);
    165   border: 1px solid #2f5bb7;
    166   color: #fff;
    167   text-shadow: 0 1px rgba(0,0,0,0.3);
    168 }
    169 .g-button-submit:active {
    170   -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
    171   box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
    172 }
    173 .g-button-submit:visited {
    174   color: #fff;
    175 }
    176 .g-button-submit:focus {
    177   -webkit-box-shadow: inset 0 0 0 1px #fff;
    178   box-shadow: inset 0 0 0 1px #fff;
    179 }
    180 .g-button-submit:focus:hover {
    181   -webkit-box-shadow: inset 0 0 0 1px #fff, 0 1px 1px rgba(0,0,0,0.1);
    182   box-shadow: inset 0 0 0 1px #fff, 0 1px 1px rgba(0,0,0,0.1);
    183 }
    184 .g-button:hover img {
    185   opacity: .72;
    186 }
    187 .g-button:active img {
    188   opacity: 1;
    189 }
    190 .errormsg {
    191   color: #dd4b39;
    192   display: block;
    193   line-height: 17px;
    194   margin: .5em 0 0;
    195 }
    196 input[type=email].form-error,
    197 input[type=number].form-error,
    198 input[type=password].form-error,
    199 input[type=text].form-error,
    200 input[type=url].form-error,
    201 input[type=text].field-error,
    202 input[type=password].field-error {
    203   border: 1px solid #dd4b39;
    204 }
    205 html {
    206   background: transparent;
    207 }
    208 .content {
    209   width: auto;
    210 }
    211 .main {
    212   padding-bottom: 12px;
    213   padding-top: 23px;
    214 }
    215 .signin-box h2 {
    216   font-size: 16px;
    217   height: 16px;
    218   line-height: 17px;
    219   margin: 0 0 1.2em;
    220   position: relative;
    221 }
    222 .signin-box label {
    223   display: block;
    224   margin: 0 0 1.5em;
    225 }
    226 .signin-box input[type=text],
    227 .signin-box input[type=password] {
    228   font-size: 15px;
    229   height: 32px;
    230   width: 100%;
    231 }
    232 .signin-box .email-label,
    233 .signin-box .passwd-label {
    234   -webkit-user-select: none;
    235   display: block;
    236   font-weight: bold;
    237   margin: 0 0 .5em;
    238   user-select: none;
    239 }
    240 .signin-box input[type=submit] {
    241   font-size: 13px;
    242   height: 32px;
    243   margin: 0 1.5em 1.2em 0;
    244 }
    245 .errormsg {
    246   display: none;
    247 }
    248 .form-error + .errormsg,
    249 .field-error + .errormsg {
    250   display: block;
    251 }
    252