This commit is contained in:
Edgar P. Burkhart 2022-05-06 19:16:15 +02:00
parent 2f0c170ef0
commit 1f9e8ba7f6
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
3 changed files with 113 additions and 2 deletions

View file

@ -1,18 +1,24 @@
@import "../fonts/inter/inter.css";
*, *::before, *::after {
box-sizing: content-box;
box-sizing: border-box;
}
:root {
--brand: #66cc00;
--text: #000000de;
--text-00: #ffffffde;
--bg-00: #000000;
--link: #0066ffde;
}
body {
font-family: "Inter var", "Inter", sans-serif;
color: var(--text);
margin: 0;
}
h1, h2, h3 {font-weight: 250}
@ -28,3 +34,39 @@ h5 {font-size: 1rem}
h6 {font-size: .8rem}
p {font-weight: 350}
a {
color: var(--link);
text-decoration: none;
}
a:hover {text-decoration: underline;}
.logo {
border-radius: 50%;
}
nav {
position: sticky;
top: 0;
height: 4rem;
line-height: 2rem;
padding: 1rem;
width: 100%;
background: var(--bg-00);
color: var(--text-00);
}
nav > * {
margin-right: 1rem;
height: 2rem;
display: inline-block;
vertical-align: middle;
}
nav a {
color: inherit;
}
nav a.active {
font-weight: 550;
}
nav .logo {
height: 2rem;
border: .1rem solid white;
}