ff-stream-web

git clone git://archive.git.mtrnord.blog/MTRNord/ff-stream-web.git
Log | Files | Refs | README | LICENSE

ErrorPage.css (792B)


      1 /**
      2  * React Starter Kit (https://www.reactstarterkit.com/)
      3  *
      4  * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
      5  *
      6  * This source code is licensed under the MIT license found in the
      7  * LICENSE.txt file in the root directory of this source tree.
      8  */
      9 
     10 * {
     11   line-height: 1.2;
     12   margin: 0;
     13 }
     14 
     15 html {
     16   color: #888;
     17   display: table;
     18   font-family: sans-serif;
     19   height: 100%;
     20   text-align: center;
     21   width: 100%;
     22 }
     23 
     24 body {
     25   display: table-cell;
     26   vertical-align: middle;
     27   padding: 2em;
     28 }
     29 
     30 h1 {
     31   color: #555;
     32   font-size: 2em;
     33   font-weight: 400;
     34 }
     35 
     36 p {
     37   margin: 0 auto;
     38   width: 280px;
     39 }
     40 
     41 pre {
     42   text-align: left;
     43   margin-top: 2rem;
     44 }
     45 
     46 @media only screen and (max-width: 280px) {
     47   body,
     48   p {
     49     width: 95%;
     50   }
     51 
     52   h1 {
     53     font-size: 1.5em;
     54     margin: 0 0 0.3em;
     55   }
     56 }