github.com/ns1/terraform@v0.7.10-0.20161109153551-8949419bef40/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: subpixel-antialiased;
    12      color: $black;
    13      font-size: 15px;
    14      font-family: $font-family-lato;
    15      font-weight: 500;
    16  }
    17  
    18  h1, h2, h3, h4, h5 {
    19      -webkit-font-smoothing: antialiased;
    20  }
    21  h1{
    22  	font-size: 42px;
    23  	line-height: 42px;
    24  	font-family: $font-family-lato;
    25  	font-weight: $font-weight-lato-sb;
    26  	margin-bottom: 24px;
    27  }
    28  
    29  h3{
    30  	font-size: 28px;
    31  	line-height: 28px;
    32  	font-family: $font-family-lato;
    33  	font-weight: $font-weight-lato-sb;
    34  }
    35  
    36  //an alternative color for buttons in the doc body
    37  .btn-serf{
    38  	color: $white !important;
    39  	background-color: $btn-color;
    40  	border-radius: $btn-border-radius;
    41  	//@include box-shadow( $shadow );
    42  }
    43  
    44  .highlight{
    45  	margin-bottom: 18px;
    46  }
    47  
    48  pre {
    49  	background-color: $black;
    50  	color: $white;
    51  	font-size: 14px;
    52  	font-weight: normal;
    53  	font-family: "Courier New", Monaco, Menlo, Consolas, monospace;
    54  	border: none;
    55  	padding: 20px;
    56  	margin-bottom: 0;
    57  }
    58  
    59  
    60  //fixed grid below 992 to prevent smaller responsive sizes
    61  @media (max-width: 992px) {
    62  	.container{
    63  		max-width: 970px;
    64  	}
    65  }
    66  
    67  //all below styles are overriding corrections for below (min-width: 992px)
    68  //below (min-width: 992px) these styles change
    69  .navbar-nav {
    70  	margin: 0;
    71  }
    72  
    73  .navbar-right {
    74  	float: right !important;
    75  }
    76  
    77  .navbar-nav > li {
    78  	float: left;
    79  }
    80  
    81  .navbar-nav > li > a {
    82  	padding-top: 15px;
    83  	padding-bottom: 15px;
    84  }
    85  
    86  .center {
    87      text-align: center;
    88  }