This repository has been archived on 2022-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
Web/css/main.css

40 lines
478 B
CSS
Raw Permalink Normal View History

2020-08-07 08:10:29 +02:00
html {
2020-12-30 12:37:20 +01:00
box-sizing: border-box;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
margin: 0;
2020-12-20 13:39:49 +01:00
color: #000000de;
2020-12-30 12:37:20 +01:00
font-family: Inter, sans-serif;
2021-04-10 10:10:02 +02:00
}
*, *::before, *::after {
box-sizing: inherit;
}
body {
margin: 0;
}
2021-04-10 10:10:02 +02:00
h1, h2 {
font-family: 'IBM Plex Serif', serif;
}
h2 {
font-weight: 700;
2021-04-10 10:10:02 +02:00
}
h1 {
font-weight: 300;
2021-04-10 11:03:34 +02:00
}
a {
2021-04-10 11:06:57 +02:00
color: #484848de;
2021-04-10 11:03:34 +02:00
text-decoration: none;
transition: color 50ms;
}
a:hover {
color: #242424de;
}
a:active {
2021-04-10 11:06:57 +02:00
color: #121212de;
2020-12-20 13:39:49 +01:00
}