28 lines
437 B
SCSS
Executable File
28 lines
437 B
SCSS
Executable File
html {
|
|
background-color: $base-background-colour;
|
|
color: $base-colour;
|
|
font: #{($base-font-size * 6.25) * 1%}/#{$base-line-height} $base-font-stack;
|
|
}
|
|
|
|
a {
|
|
color: $base-colour;
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, p, ul, ol {
|
|
margin-bottom: $base-margin-bottom * 1px;
|
|
}
|
|
|
|
ul, ol {
|
|
margin-left: $base-margin-bottom * 1px;
|
|
}
|
|
|
|
ul ul, ol ol {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
height: auto;
|
|
max-width: 100%;
|
|
} |