lewisdale.dev/src/css/globals.css

90 lines
1.4 KiB
CSS
Raw Normal View History

body {
background-color: var(--color-slate-800);
2023-02-06 10:22:59 +00:00
color: var(--color-slate-200);
font-family: var(--font-family-mono);
font-size: var(--text-size-s);
text-underline-offset: var(--space-size-4xs);
2023-02-05 19:53:49 +00:00
}
2023-02-06 10:22:59 +00:00
h1,
h2,
h3,
h4,
h5 {
display: flex;
font-weight: bold;
gap: 1ch;
line-height: 1;
2023-02-06 10:22:59 +00:00
margin: 0;
2023-02-05 19:53:49 +00:00
}
h1 {
2023-02-06 10:22:59 +00:00
font-size: var(--text-size-2xl);
word-wrap: normal;
text-underline-offset: var(--space-size-2xs);
2023-02-05 20:05:54 +00:00
}
2023-02-05 19:53:49 +00:00
h2 {
2023-02-06 10:22:59 +00:00
font-size: var(--text-size-xl);
text-underline-offset: var(--space-size-3xs);
2023-02-05 19:53:49 +00:00
}
2023-02-06 10:22:59 +00:00
h3 {
font-size: var(--text-size-l);
text-underline-offset: var(--space-size-3xs);
2023-02-05 20:05:54 +00:00
}
2023-02-06 10:22:59 +00:00
a {
color: inherit;
text-decoration: underline;
&:hover {
text-decoration-color: var(--color-amber-200);
}
&:visited {
color: inherit;
}
2023-02-05 19:53:49 +00:00
}
2023-02-06 10:22:59 +00:00
nav {
--vertical-spacing: var(--space-size-m);
font-size: var(--text-size-s);
2023-02-05 20:05:54 +00:00
}
2023-02-06 10:22:59 +00:00
header {
align-items: center;
display: flex;
flex-direction: row;
justify-content: space-between;
2023-02-06 10:22:59 +00:00
padding-top: var(--space-size-s);
padding-bottom: var(--space-size-s);
2023-02-05 19:53:49 +00:00
}
p {
2023-02-07 20:21:08 +00:00
line-height: 1.6;
max-width: 50ch;
}
footer {
padding-top: var(--space-size-l);
width: 100vw;
}
2023-02-06 10:22:59 +00:00
@media (min-width: 50em) {
h1::before {
content: "#";
margin-inline-start: -2ch;
}
h2::before {
content: "##";
margin-inline-start: -3ch;
}
h3::before {
content: "###";
margin-inline-start: -4ch;
}
}