tale/_sass/tale/_base.scss

66 lines
749 B
SCSS
Raw Normal View History

2017-03-14 03:55:34 +00:00
* {
@include box-sizing;
2017-03-15 04:27:59 +00:00
line-height: 1.5;
2017-03-14 03:55:34 +00:00
}
html,
body {
color: $default-color;
margin: 0;
padding: 0;
}
html {
2017-12-29 06:48:02 +00:00
font-family: $serif-primary;
2017-03-21 09:49:46 +00:00
font-size: 14px;
2017-03-21 09:49:46 +00:00
@media (min-width: 600px) {
font-size: 16px;
}
2017-03-14 03:55:34 +00:00
}
body {
-webkit-text-size-adjust: 100%;
}
2017-03-14 03:55:34 +00:00
h1,
h2,
h3,
h4,
h5,
h6 {
2017-03-21 09:49:46 +00:00
color: $default-shade;
2017-12-29 06:48:02 +00:00
font-family: $sans-serif;
2017-03-15 04:27:59 +00:00
line-height: normal;
2017-03-14 03:55:34 +00:00
}
a {
color: $blue;
text-decoration: none;
}
blockquote {
border-left: .25rem solid $grey-2;
color: $grey-1;
margin: .8rem 0;
padding: .5rem 1rem;
p:last-child {
margin-bottom: 0;
}
@media (min-width: 600px) {
padding: 0 5rem 0 1.25rem;
}
}
img {
display: block;
margin: 0 0 1rem;
max-width: 100%;
}
2017-03-16 02:56:23 +00:00
td {
2017-03-16 02:56:23 +00:00
vertical-align: top;
}