2014-07-16 23:51:48 +02:00
|
|
|
//
|
|
|
|
// Global Site
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
/*html{
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
}*/
|
|
|
|
|
|
|
|
body {
|
2014-07-28 19:10:23 +02:00
|
|
|
-webkit-font-smoothing: subpixel-antialiased;
|
2014-10-13 18:44:38 +02:00
|
|
|
color: $black;
|
|
|
|
background-color: $black;
|
2014-07-23 00:31:43 +02:00
|
|
|
font-size: 15px;
|
2014-10-13 18:44:38 +02:00
|
|
|
font-family: $font-family-lato;
|
2014-07-28 17:51:57 +02:00
|
|
|
font-weight: 500;
|
2014-07-16 23:51:48 +02:00
|
|
|
}
|
|
|
|
|
2014-07-28 19:10:23 +02:00
|
|
|
|
|
|
|
h1, h2, h3, h4, h5 {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
}
|
2014-07-16 23:51:48 +02:00
|
|
|
h1{
|
|
|
|
font-size: 42px;
|
|
|
|
line-height: 42px;
|
2014-10-13 18:44:38 +02:00
|
|
|
font-family: $font-family-lato;
|
|
|
|
font-weight: $font-weight-lato-sb;
|
2014-07-16 23:51:48 +02:00
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3{
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 28px;
|
2014-10-13 18:44:38 +02:00
|
|
|
font-family: $font-family-lato;
|
|
|
|
font-weight: $font-weight-lato-sb;
|
2014-07-16 23:51:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//an alternative color for buttons in the doc body
|
|
|
|
.btn-serf{
|
2014-10-13 18:44:38 +02:00
|
|
|
color: $white !important;
|
|
|
|
background-color: $btn-color;
|
|
|
|
border-radius: $btn-border-radius;
|
|
|
|
//@include box-shadow( $shadow );
|
2014-07-16 23:51:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.highlight{
|
|
|
|
margin-bottom: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
2014-10-13 18:44:38 +02:00
|
|
|
background-color: $black;
|
|
|
|
color: $white;
|
2014-07-16 23:51:48 +02:00
|
|
|
font-size: 14px;
|
|
|
|
font-weight: normal;
|
|
|
|
font-family: "Courier New", Monaco, Menlo, Consolas, monospace;
|
|
|
|
border: none;
|
|
|
|
padding: 20px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//fixed grid below 992 to prevent smaller responsive sizes
|
|
|
|
@media (max-width: 992px) {
|
|
|
|
.container{
|
|
|
|
max-width: 970px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//all below styles are overriding corrections for below (min-width: 992px)
|
|
|
|
//below (min-width: 992px) these styles change
|
|
|
|
.navbar-nav {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-right {
|
|
|
|
float: right !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav > li {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav > li > a {
|
|
|
|
padding-top: 15px;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|