staticadventures/sass/custom.scss

41 lines
846 B
SCSS
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

:root {
--links: #A30006;
}
header {
> nav {
background-color: var(--text-bright);
> a {
color: var(--background);
font-weight: bolder;
}
}
> h1 {
margin: 0.5rem 0 0 0;
line-height: 1.1;
}
> h2 {
line-height: 1.1;
font-style: italic;
font-weight: normal;
margin: 0;
}
}
.skills {
background-color: var(--background-alt);
border-radius: 5px;
border: 1px black;
padding: 0.5em;
margin-top: 1em;
text-align: center;
}
.e-content {
> h1::before { content: "# "; opacity: 0.5; }
> h2::before { content: "## "; opacity: 0.5; }
> h3::before { content: "### "; opacity: 0.5; }
> h4::before { content: "#### "; opacity: 0.5; }
> h5::before { content: "##### "; opacity: 0.5; }
}