barebones/assets/sass/base/_base.scss

46 lines
552 B
SCSS
Raw Normal View History

2015-10-14 12:10:55 +02:00
body {
color: $base-colour;
2015-10-15 18:24:32 +02:00
font-family: $base-font-family;
2015-10-14 12:10:55 +02:00
@include font-size($base-font-size);
line-height: $base-line-height;
2015-10-15 18:24:32 +02:00
-webkit-text-size-adjust: none;
2015-10-14 12:10:55 +02:00
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
hr,
ul,
ol,
dl,
address {
margin-bottom: $base-spacing-unit;
}
/**
* Basic styles for links
*/
a {
2015-10-14 12:25:52 +02:00
color: $brand-colour;
2015-10-14 12:10:55 +02:00
text-decoration: none;
&:hover {
2015-10-14 12:25:52 +02:00
color: $base-colour;
2015-10-14 12:10:55 +02:00
text-decoration: underline;
}
2015-10-14 15:58:18 +02:00
}
/**
* Rulers
*/
hr {
background-color: $base-colour;
height: 1px;
2015-10-14 12:10:55 +02:00
}