lewisdale.dev/src/css/globals.css

52 lines
713 B
CSS
Raw Normal View History

body {
2023-02-05 19:53:49 +00:00
background-color: var(--color-blueGray-800);
color: var(--color-zinc-200);
font-family: var(--font-family-mono);
2023-02-05 19:53:49 +00:00
font-size: var(--text-size-s);
text-underline-offset: var(--space-size-4xs);
}
h1, h2, h3, h4, h5 {
2023-02-05 20:05:54 +00:00
display: flex;
2023-02-05 19:53:49 +00:00
font-weight: bold;
2023-02-05 20:05:54 +00:00
gap: 1ch;
2023-02-05 19:53:49 +00:00
line-height: 1.2;
margin: 0;
}
h1 {
font-size: var(--text-size-2xl);
word-wrap: normal;
}
2023-02-05 20:05:54 +00:00
h1::before {
content: "#";
margin-inline-start: -2ch;
}
2023-02-05 19:53:49 +00:00
h2 {
font-size: var(--text-size-xl);
}
2023-02-05 20:05:54 +00:00
h2::before {
content: "##";
margin-inline-start: -3ch;
}
2023-02-05 19:53:49 +00:00
h3 {
font-size: var(--text-size-l);
}
2023-02-05 20:05:54 +00:00
h3::before {
content: "###";
margin-inline-start: -4ch;
}
2023-02-05 19:53:49 +00:00
a {
color: inherit;
text-decoration: underline;
}
a:visited {
color: inherit;
}