barebones/assets/styles/base/_base.scss

52 lines
628 B
SCSS
Raw Normal View History

2015-10-14 12:10:55 +02:00
body {
color: $base-colour;
font-family: $base-font-family;
line-height: $base-line-height;
text-size-adjust: none;
@include font-size($base-font-size);
2015-10-14 12:10:55 +02:00
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
hr,
ul,
2015-10-14 12:10:55 +02:00
ol,
dl,
address {
margin-bottom: $base-spacing-unit;
2015-10-14 12:10:55 +02:00
}
/**
* Basic styles for links
*/
a {
color: $brand-colour;
text-decoration: none;
2015-10-14 15:58:18 +02:00
&:hover {
color: $base-colour;
text-decoration: underline;
}
2015-10-19 12:54:53 +02:00
}
a[href^="tel"] {
font-size: inherit;
font-family: inherit;
color: inherit;
text-decoration: none;
font-style: inherit;
}
2015-10-14 15:58:18 +02:00
/**
* Rules
2015-10-14 15:58:18 +02:00
*/
hr {
height: 1px;
background-color: $base-colour;
}