barebones/assets/styles/base/_base.scss

55 lines
713 B
SCSS
Raw Normal View History

2015-10-14 12:10:55 +02:00
body {
2019-01-08 11:52:31 +01:00
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,
2019-01-08 11:52:31 +01:00
dl {
margin-bottom: $base-spacing-unit;
&:last-child {
margin-bottom: 0;
}
2015-10-14 12:10:55 +02:00
}
/**
* Basic styles for links
*/
2015-10-14 15:58:18 +02:00
2019-01-08 11:52:31 +01:00
a {
color: $brand-colour;
text-decoration: none;
&:hover {
color: $base-colour;
text-decoration: underline;
}
2015-10-19 12:54:53 +02:00
}
a[href^="tel"] {
2019-01-08 11:52:31 +01:00
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
*/
2019-01-08 11:52:31 +01:00
2015-10-14 15:58:18 +02:00
hr {
2019-01-08 11:52:31 +01:00
height: 1px;
background-color: $base-colour;
}