4a1fa67f26
I apologize in advance for the rather long PR, but unfortunately there is not an easy way to break this up into smaller chunks. This separates the agent configuration into smaller, more consumable pieces just like the job specification.
91 lines
1.5 KiB
SCSS
Executable file
91 lines
1.5 KiB
SCSS
Executable file
//
|
|
// Global Site
|
|
// --------------------------------------------------
|
|
|
|
/*html{
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
}*/
|
|
|
|
body {
|
|
-webkit-font-smoothing: antialiased;
|
|
color: $black;
|
|
background-color: $white;
|
|
font-size: 15px;
|
|
font-family: $font-family-open-sans;
|
|
font-weight: 500;
|
|
}
|
|
|
|
|
|
h1, h2, h3, h4, h5 {
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
h1{
|
|
font-family: $font-family-open-sans;
|
|
font-weight: $font-weight-reg;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
h3, h4{
|
|
font-family: $font-family-open-sans;
|
|
font-weight: $font-weight-reg;
|
|
}
|
|
|
|
//an alternative color for buttons in the doc body
|
|
.btn-serf{
|
|
color: $white !important;
|
|
background-color: $btn-color;
|
|
border-radius: $btn-border-radius;
|
|
//@include box-shadow( $shadow );
|
|
}
|
|
|
|
.highlight{
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
pre {
|
|
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;
|
|
}
|
|
|
|
//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;
|
|
}
|
|
|
|
.alert p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
//fixed grid below 992 to prevent smaller responsive sizes
|
|
@media (max-width: 992px) {
|
|
.container{
|
|
max-width: 970px;
|
|
}
|
|
}
|