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