Files
Homepage/assets/sass/layout/_header.scss
David Miller 51c2ee92c1 v2.2
2022-03-10 20:17:09 +08:00

31 lines
422 B
SCSS

/* Header */
#header {
h1 {
font-size: 3.25em;
margin: 0 0 (_size(element-margin) * 0.275) 0;
}
p {
font-size: 1.35em;
line-height: 1.65em;
}
a {
color: inherit;
}
@include breakpoint('<=small') {
h1 {
font-size: 2em;
}
p {
font-size: 1em;
}
}
@include breakpoint('<=xsmall') {
margin: 0 0 (_size(element-margin) * 0.5) 0;
}
}