mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 14:38:30 -04:00
also migrated SASS to latest syntax (via dart-sass) and vastly simplified light/dark theme logic
26 lines
329 B
SCSS
26 lines
329 B
SCSS
// Video Styles
|
|
div.layout-etc {
|
|
padding-top: 1.5em;
|
|
padding-bottom: 1.5em;
|
|
|
|
h1 {
|
|
margin-top: 0;
|
|
text-align: center;
|
|
letter-spacing: -0.005em;
|
|
|
|
a {
|
|
color: inherit;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Responsive
|
|
@mixin responsive() {
|
|
div.layout-etc {
|
|
h1 {
|
|
font-size: 1.6em;
|
|
padding: 0 0.6em;
|
|
}
|
|
}
|
|
}
|