50 lines
788 B
CSS
50 lines
788 B
CSS
@font-face {
|
|
font-family: "JetBrains Mono";
|
|
src: url("JetBrainsMono-Regular.woff2") format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
:root {
|
|
--background: rgb(38, 38, 38);
|
|
--foreground: rgb(240, 240, 240);
|
|
--subtext: rgb(100, 100, 100);
|
|
}
|
|
html {
|
|
font-family: "JetBrains Mono", monospace;
|
|
}
|
|
body {
|
|
background-color: var(--background);
|
|
color: var(--foreground);
|
|
width: 50%;
|
|
margin: auto;
|
|
}
|
|
|
|
#title {
|
|
font-size: 3.5rem;
|
|
margin-bottom: 0;
|
|
}
|
|
#subtitle {
|
|
color:var(--subtext);
|
|
font-size: 1rem;
|
|
padding-bottom: 2rem;
|
|
margin-top: 0;
|
|
}
|
|
|
|
#posts {
|
|
width: 100%;
|
|
}
|
|
|
|
.post > a > h1 {
|
|
font-size: 1rem;
|
|
margin-bottom: 0;
|
|
color:pink;
|
|
}
|
|
.post > a {
|
|
text-decoration: none;
|
|
}
|
|
.post > h2 {
|
|
color: var(--subtext);
|
|
font-size: 0.7rem;
|
|
margin-top: 0;
|
|
}
|