open-consul/website/source/assets/stylesheets/_global.scss

84 lines
1.4 KiB
SCSS
Raw Normal View History

2014-02-08 00:41:03 +00:00
//
// Global Site
// --------------------------------------------------
/*html{
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}*/
body {
font-size: 15px;
2014-10-06 23:11:52 +00:00
color: $black;
2014-04-09 02:44:14 +00:00
font-weight: 300;
2014-02-08 00:41:03 +00:00
}
h1{
font-size: 42px;
line-height: 42px;
2014-10-06 23:11:52 +00:00
font-family: $font-family-museo;
font-weight: $font-weight-museo-sb;
2014-02-08 00:41:03 +00:00
margin-bottom: 24px;
}
h3{
font-size: 28px;
line-height: 28px;
2014-10-06 23:11:52 +00:00
font-family: $font-family-museo;
font-weight: $font-weight-museo-sb;
2014-02-08 00:41:03 +00:00
}
//an alternative color for buttons in the doc body
.btn-serf{
2014-10-06 23:11:52 +00:00
color: $white !important;
background-color: $btn-color;
border-radius: $btn-border-radius;
//@include box-shadow( $shadow );
2014-02-08 00:41:03 +00:00
}
.highlight{
margin-bottom: 18px;
}
pre {
2014-10-06 23:11:52 +00:00
background-color: $black;
color: $white;
2014-02-08 00:41:03 +00: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;
}
2014-05-01 17:49:30 +00:00
.center {
text-align: center;
}