ff-stream-web

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

Header.css (919B)


      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 @import '../variables.css';
     11 
     12 :root {
     13   --brand-color: #61dafb;
     14 }
     15 
     16 .root {
     17   background: #373277;
     18   color: #fff;
     19 }
     20 
     21 .container {
     22   margin: 0 auto;
     23   padding: 20px 0;
     24   max-width: var(--max-content-width);
     25 }
     26 
     27 .brand {
     28   color: color(var(--brand-color) lightness(+10%));
     29   text-decoration: none;
     30   font-size: 1.75em; /* ~28px */
     31 }
     32 
     33 .brandTxt {
     34   margin-left: 10px;
     35 }
     36 
     37 .nav {
     38   float: right;
     39   margin-top: 6px;
     40 }
     41 
     42 .banner {
     43   text-align: center;
     44 }
     45 
     46 .bannerTitle {
     47   margin: 0;
     48   padding: 10px;
     49   font-weight: normal;
     50   font-size: 4em;
     51   line-height: 1em;
     52 }
     53 
     54 .bannerDesc {
     55   padding: 0;
     56   color: rgba(255, 255, 255, 0.5);
     57   font-size: 1.25em;
     58   margin: 0;
     59 }