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

102 lines
1.6 KiB
SCSS
Raw Normal View History

2014-02-08 00:41:03 +00:00
//
// Global Site
// --------------------------------------------------
/*html{
2015-11-09 21:48:29 +00:00
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
2014-02-08 00:41:03 +00:00
}*/
body {
2015-11-09 21:48:29 +00:00
font-size: 15px;
color: $black;
font-weight: 300;
2014-02-08 00:41:03 +00:00
}
h1, h2, h3, h4, h5 {
font-family: $font-family-klavika;
2017-02-21 22:37:51 +00:00
text-transform: uppercase;
}
2014-02-08 00:41:03 +00:00
h1{
2015-11-09 21:48:29 +00:00
font-size: 42px;
line-height: 42px;
2017-02-21 22:37:51 +00:00
font-weight: $font-weight-sb;
2015-11-09 21:48:29 +00:00
margin-bottom: 24px;
2014-02-08 00:41:03 +00:00
}
h3{
2015-11-09 21:48:29 +00:00
font-size: 28px;
line-height: 28px;
2017-02-21 22:37:51 +00:00
font-weight: $font-weight-sb;
2014-02-08 00:41:03 +00:00
}
p, a, input, .alert {
font-family: $font-family-open-sans;
}
2014-02-08 00:41:03 +00:00
//an alternative color for buttons in the doc body
.btn-serf{
2015-11-09 21:48:29 +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{
2015-11-09 21:48:29 +00:00
margin-bottom: 18px;
2014-02-08 00:41:03 +00:00
}
pre {
2015-11-09 21:48:29 +00:00
background-color: $black;
color: $white;
font-size: 14px;
font-weight: normal;
font-family: "Courier New", Monaco, Menlo, Consolas, monospace;
border: none;
padding: 20px;
margin-bottom: 0;
2014-02-08 00:41:03 +00:00
}
2016-09-26 15:13:20 +00:00
tt {
font-size: 18px;
font-family: "Menlo", "Monaco", "Courier New", monospace;
}
2014-02-08 00:41:03 +00:00
//fixed grid below 992 to prevent smaller responsive sizes
@media (max-width: 992px) {
2015-11-09 21:48:29 +00:00
.container{
max-width: 970px;
}
2014-02-08 00:41:03 +00:00
}
//all below styles are overriding corrections for below (min-width: 992px)
//below (min-width: 992px) these styles change
.navbar-nav {
2015-11-09 21:48:29 +00:00
margin: 0;
2014-02-08 00:41:03 +00:00
}
.navbar-right {
2015-11-09 21:48:29 +00:00
float: right !important;
2014-02-08 00:41:03 +00:00
}
.navbar-nav > li {
2015-11-09 21:48:29 +00:00
float: left;
2014-02-08 00:41:03 +00:00
}
.navbar-nav > li > a {
2015-11-09 21:48:29 +00:00
padding-top: 15px;
padding-bottom: 15px;
2014-02-08 00:41:03 +00:00
}
2014-05-01 17:49:30 +00:00
.center {
2015-11-09 21:48:29 +00:00
text-align: center;
2014-05-01 17:49:30 +00:00
}
.edit-this-page{
padding-top: 48px;
a{
text-transform: uppercase;
}
}