1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 11:56:20 -04:00
jarv.is/assets/sass/pages/_single.scss

53 lines
775 B
SCSS

@charset "UTF-8";
// Post Styles
main#single {
padding-top: 1em;
padding-bottom: 1em;
div#meta {
font-size: 0.85em;
line-height: 1.3;
letter-spacing: 0.04em;
margin-top: 0.8em;
@include themed() {
color: t(medium);
}
a {
color: inherit;
}
span.dash {
margin: 0 0.7em;
}
}
h1#title {
margin-top: 0.3em;
margin-bottom: 0.6em;
margin-left: -0.03em; // TODO: why is this indented slightly?
font-size: 2.2em;
line-height: 1.3;
font-weight: 700;
letter-spacing: -0.005em;
a {
color: inherit;
}
}
}
// Responsive
@mixin responsive--single() {
main#single {
padding: 0.8em 1.1em;
h1#title {
margin-top: 0.5em;
font-size: 1.8em;
}
}
}