8c11e3a4fc
* website - font and brand updates * sidebar font-size adjustments and scss cleanup * adjust nav and inline code styles
29 lines
506 B
SCSS
Executable file
29 lines
506 B
SCSS
Executable file
html {
|
|
font-size: $font-size-default;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
-webkit-font-smoothing: antialiased;
|
|
color: $body-font-color;
|
|
background-color: $white;
|
|
font-size: $font-size-default;
|
|
font-family: $font-body;
|
|
font-weight: $font-weight-reg;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
code {
|
|
color: $body-font-color;
|
|
background: $consul-l3;
|
|
}
|
|
|
|
.sidebar .sidebar-nav li a {
|
|
line-height: 18px;
|
|
} |