barebones/css/_normalise.scss

28 lines
437 B
SCSS
Raw Normal View History

2014-01-30 12:20:51 +01:00
html {
background-color: $base-background-colour;
color: $base-colour;
2014-02-03 23:10:54 +01:00
font: #{($base-font-size * 6.25) * 1%}/#{$base-line-height} $base-font-stack;
2014-01-30 12:20:51 +01:00
}
2014-02-03 23:10:54 +01:00
a {
color: $base-colour;
text-decoration: none;
2014-01-30 12:20:51 +01:00
}
2014-02-03 23:10:54 +01:00
h1, h2, h3, h4, h5, h6, p, ul, ol {
2014-01-30 12:20:51 +01:00
margin-bottom: $base-margin-bottom * 1px;
}
ul, ol {
2014-02-03 23:10:54 +01:00
margin-left: $base-margin-bottom * 1px;
2014-01-30 12:20:51 +01:00
}
ul ul, ol ol {
margin-bottom: 0;
}
img {
display: block;
height: auto;
2014-02-06 16:16:07 +01:00
max-width: 100%;
2014-01-30 12:20:51 +01:00
}