mirror of https://github.com/docker/docs.git
32 lines
623 B
SCSS
Executable File
32 lines
623 B
SCSS
Executable File
html {
|
|
font-family: $font;
|
|
-webkit-text-size-adjust: 100%;
|
|
-ms-text-size-adjust: 100%;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
color-scheme: light;
|
|
}
|
|
|
|
body {
|
|
background-color: $bg-body;
|
|
color: $body-text;
|
|
font-family: $font;
|
|
font-size: $body-text-size;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
a {
|
|
color: $primary-links;
|
|
text-decoration: none;
|
|
outline: none;
|
|
&:hover, &:focus {
|
|
opacity: .8;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
blockquote {
|
|
/* Override Bootstrap's style */
|
|
border-left: none;
|
|
} |