github.com/maier/nomad@v0.4.1-0.20161110003312-a9e3d0b8549d/website/source/assets/stylesheets/_global.scss (about)

     1  //
     2  // Global Site
     3  // --------------------------------------------------
     4  
     5  /*html{
     6  text-rendering: optimizeLegibility;
     7  -webkit-font-smoothing: antialiased;
     8  }*/
     9  
    10  body {
    11    -webkit-font-smoothing: antialiased;
    12    color: $black;
    13    background-color: $white;
    14    font-size: 15px;
    15    font-family: $font-family-open-sans;
    16    font-weight: 500;
    17  }
    18  
    19  
    20  h1, h2, h3, h4, h5 {
    21    -webkit-font-smoothing: antialiased;
    22  }
    23  
    24  h1{
    25    font-family: $font-family-open-sans;
    26    font-weight: $font-weight-reg;
    27    margin-bottom: 24px;
    28  }
    29  
    30  h3, h4{
    31    font-family: $font-family-open-sans;
    32    font-weight: $font-weight-reg;
    33  }
    34  
    35  //an alternative color for buttons in the doc body
    36  .btn-serf{
    37    color: $white !important;
    38    background-color: $btn-color;
    39    border-radius: $btn-border-radius;
    40    //@include box-shadow( $shadow );
    41  }
    42  
    43  .highlight{
    44    margin-bottom: 18px;
    45  }
    46  
    47  pre {
    48    background-color: $black;
    49    color: $white;
    50    font-size: 14px;
    51    font-weight: normal;
    52    font-family: "Courier New", Monaco, Menlo, Consolas, monospace;
    53    border: none;
    54    padding: 20px;
    55    margin-bottom: 0;
    56  }
    57  
    58  //all below styles are overriding corrections for below (min-width: 992px)
    59  //below (min-width: 992px) these styles change
    60  .navbar-nav {
    61    margin: 0;
    62  }
    63  
    64  .navbar-right {
    65    float: right !important;
    66  }
    67  
    68  .navbar-nav > li {
    69    float: left;
    70  }
    71  
    72  .navbar-nav > li > a {
    73    padding-top: 15px;
    74    padding-bottom: 15px;
    75  }
    76  
    77  .center {
    78    text-align: center;
    79  }
    80  
    81  .alert p:last-child {
    82    margin-bottom: 0;
    83  }
    84  
    85  //fixed grid below 992 to prevent smaller responsive sizes
    86  @media (max-width: 992px) {
    87    .container{
    88      max-width: 970px;
    89    }
    90  }