github.com/vtorhonen/terraform@v0.9.0-beta2.0.20170307220345-5d894e4ffda7/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-open-sans;
    15      font-weight: 500;
    16  }
    17  
    18  h1, h2, h3, h4, h5 {
    19      -webkit-font-smoothing: antialiased;
    20      font-family: $font-family-klavika;
    21      font-weight: 600;
    22  }
    23  h1{
    24  	font-size: 42px;
    25  	line-height: 40px;
    26  	margin-bottom: 24px;
    27    text-transform: uppercase;
    28  }
    29  
    30  h2{
    31    font-size: 34px;
    32    text-transform: uppercase;
    33  }
    34  
    35  h3{
    36  	font-size: 20px;
    37  	line-height: 20px;
    38    text-transform: uppercase;
    39  }
    40  
    41  h4 {
    42    font-size: 18px;
    43  }
    44  
    45  p {
    46    margin-bottom: 30px;
    47    font-size: 16px;
    48    font-family: $font-family-open-sans;
    49    font-weight: regular;
    50    line-height: 1.5;
    51  }
    52  
    53  p.lead{
    54    font-size: 21px;
    55    font-weight: 400 !important;
    56  }
    57  
    58  //an alternative color for buttons in the doc body
    59  .btn-serf{
    60  	color: $white !important;
    61  	background-color: $btn-color;
    62  	border-radius: $btn-border-radius;
    63  	//@include box-shadow( $shadow );
    64  }
    65  
    66  .highlight{
    67  	margin-bottom: 18px;
    68  }
    69  
    70  pre {
    71  	background-color: $black;
    72  	color: $white;
    73  	font-size: 14px;
    74  	font-weight: normal;
    75  	font-family: "Courier New", Monaco, Menlo, Consolas, monospace;
    76  	border: none;
    77  	padding: 20px;
    78  	margin-bottom: 0;
    79  }
    80  
    81  // Typekit utilites to hide FOUC
    82  .wf-loading {
    83    visibility: hidden;
    84  }
    85  .wf-active, .wf-inactive {
    86    visibility: visible;
    87  }
    88  
    89  
    90  //fixed grid below 992 to prevent smaller responsive sizes
    91  @media (max-width: 992px) {
    92  	.container{
    93  		max-width: 970px;
    94  	}
    95  }
    96  
    97  //all below styles are overriding corrections for below (min-width: 992px)
    98  //below (min-width: 992px) these styles change
    99  .navbar-nav {
   100  	margin: 0;
   101  }
   102  
   103  .navbar-right {
   104  	float: right !important;
   105  }
   106  
   107  .navbar-nav > li {
   108  	float: left;
   109  }
   110  
   111  .navbar-nav > li > a {
   112  	padding-top: 15px;
   113  	padding-bottom: 15px;
   114  }
   115  
   116  .center {
   117      text-align: center;
   118  }