1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 10:18:27 -04:00
jarv.is/assets/sass/pages/_home.scss
2021-04-03 07:46:13 -04:00

128 lines
2.1 KiB
SCSS

@charset "UTF-8";
// Home Styles
div.layout-home {
font-size: 1em;
padding-top: 1.5em;
padding-bottom: 0.75em;
h2 {
margin: 0 0 0.6em 0;
font-size: 1.8em;
font-weight: 500;
letter-spacing: -0.014em;
line-height: 1.1;
margin-left: -0.03em; // TODO: why is this indented slightly?
}
h3 {
margin: 0.6em 0;
font-size: 1.35em;
font-weight: 400;
letter-spacing: -0.022em;
line-height: 1.4;
}
p {
margin: 0.85em 0;
letter-spacing: -0.009em;
line-height: 1.7;
}
sup {
letter-spacing: normal;
position: relative;
&#key {
font-size: 0.65em;
word-spacing: -0.3em;
margin-right: 0.1em;
img.emoji {
vertical-align: -0.15em; // magic number to align with text :\
padding: 0;
}
}
}
img#me {
float: right;
margin-bottom: 0.6em;
margin-left: 1.2em;
padding: 4px;
width: 160px;
height: 160px;
border: 1px solid;
border-radius: 50%;
@include colors() {
border-color: c(light);
}
}
// easter egg emoji cursor
a#birthday {
&:hover {
cursor: url($icon-wand) 0 0, auto;
}
}
// non-link colors
span {
&#serverless {
color: $color-serverless;
}
&#shh {
@include colors() {
color: c(medium-light);
}
}
&.wave {
margin-left: 2px;
}
}
}
// Loop through $colors-home (see abstracts/_variables)
@each $id, $colors in $colors-home {
@each $theme, $color in $colors {
body.#{$theme} div.layout-home a##{$id} {
color: $color;
background-image: underline-hack($color);
}
}
}
// Responsive
@mixin responsive--home() {
div.layout-home {
font-size: 0.975em;
padding: 1.2em 1.2em 0.4em 1.2em;
h2 {
font-size: 1.5em;
letter-spacing: -0.014em;
line-height: 1.4;
}
h3 {
font-size: 1.185em;
letter-spacing: -0.017em;
line-height: 1.55;
}
p {
letter-spacing: -0.012em;
}
img#me {
width: 90px;
height: 90px;
margin: 0 0 0.3em 0.6em;
padding: 2px;
}
}
}