github.com/sixgill/terraform@v0.9.0-beta2.0.20170316214032-033f6226ae50/website/source/assets/stylesheets/_header.scss (about)

     1  //
     2  // Header
     3  // - Project Specific
     4  // - edits should be made here
     5  // --------------------------------------------------
     6  
     7  body.page-sub{
     8    #header{
     9      background-color: $purple;
    10    }
    11  }
    12  
    13  #header {
    14    .navbar-brand {
    15      .logo{
    16        width: $project-logo-width;
    17        height: $project-logo-height;
    18        font-size: 0px;
    19        font-family: $font-family-klavika;
    20        background: image-url('logo-header.svg') 0 32% no-repeat;
    21  
    22        &:hover{
    23          opacity: .6;
    24        }
    25      }
    26  
    27      .by-hashicorp{
    28        margin-top: 2px;
    29        &:hover{
    30          svg{
    31            .svg-bg-line{
    32              opacity: .4;
    33            }
    34          }
    35        }
    36      }
    37    }
    38  
    39    .buttons{
    40      margin-top: 2px; //baseline everything
    41  
    42      ul.navbar-nav{
    43        li {
    44          svg path{
    45            fill: $white;
    46          }
    47        }
    48      }
    49    }
    50  
    51    .main-links,
    52    .external-links {
    53      li > a {
    54        @include project-a-style();
    55      }
    56    }
    57  }