2025-05-13 21:49:56 +02:00
|
|
|
/* Impports */
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
|
|
|
|
|
|
|
|
|
|
|
|
:root {
|
|
|
|
font-family: 'IBM Plex Mono';
|
|
|
|
line-height: 1.5;
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
color-scheme: light dark;
|
|
|
|
color: rgba(255, 255, 255, 0.87);
|
|
|
|
background-color: #0c0c0c;
|
|
|
|
|
|
|
|
font-synthesis: none;
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
min-width: 320px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2025-05-15 01:20:44 +02:00
|
|
|
* {
|
|
|
|
transition: 200ms;
|
|
|
|
}
|
|
|
|
|
2025-05-13 21:49:56 +02:00
|
|
|
|
2025-05-12 19:31:19 +02:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Logo */
|
|
|
|
|
|
|
|
.logo.img {
|
|
|
|
position: absolute;
|
|
|
|
top: 1.6rem;
|
2025-05-13 02:02:46 +02:00
|
|
|
left: 2rem;
|
2025-05-12 19:31:19 +02:00
|
|
|
height: 6em;
|
2025-05-13 21:49:56 +02:00
|
|
|
|
2025-05-12 19:31:19 +02:00
|
|
|
padding: 1.5em;
|
2025-05-13 21:49:56 +02:00
|
|
|
|
|
|
|
user-select: none;
|
2025-05-12 19:31:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.logo.text {
|
|
|
|
|
2025-05-13 21:49:56 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 10rem;
|
|
|
|
top: 3.8rem;
|
|
|
|
|
|
|
|
margin: 0;
|
2025-05-12 19:31:19 +02:00
|
|
|
|
|
|
|
color: #eaeaea;
|
|
|
|
font-family: Inter;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 3em;
|
2025-05-13 21:49:56 +02:00
|
|
|
|
|
|
|
user-select: none;
|
2025-05-13 02:02:46 +02:00
|
|
|
}
|
|
|
|
|
2025-05-15 01:20:44 +02:00
|
|
|
.logoSmall.img {
|
|
|
|
position: absolute;
|
|
|
|
top: 1.5rem;
|
|
|
|
left: .5rem;
|
|
|
|
height: 6em;
|
|
|
|
|
|
|
|
padding: 1.5em;
|
|
|
|
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logoSmall.text {
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
left: 8rem;
|
|
|
|
top: 4.1rem;
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
color: #eaeaea;
|
|
|
|
font-family: Inter;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 2.5em;
|
|
|
|
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2025-05-13 02:02:46 +02:00
|
|
|
h1 {
|
|
|
|
position: absolute;
|
|
|
|
left: 0rem;
|
|
|
|
top: -3rem;
|
|
|
|
|
|
|
|
color: #eaeaea;
|
|
|
|
font-family: Inter;
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
|
|
padding: 1.5em;
|
|
|
|
|
|
|
|
font-size: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content-container {
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
top: 11rem;
|
|
|
|
right: 4rem;
|
|
|
|
left: 43rem;
|
|
|
|
bottom: 4rem;
|
|
|
|
|
|
|
|
min-height: 20rem;
|
|
|
|
min-width: 50rem;
|
|
|
|
|
2025-05-13 21:49:56 +02:00
|
|
|
/* background-color: #1a1a1a; */
|
2025-05-13 02:02:46 +02:00
|
|
|
color: #eaeaea;
|
|
|
|
|
2025-05-13 21:49:56 +02:00
|
|
|
/* border: #3a3a3a solid; */
|
2025-05-13 02:02:46 +02:00
|
|
|
border-width: .1em;
|
|
|
|
border-radius: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
position: absolute;
|
|
|
|
top: 11rem;
|
|
|
|
right: 4rem;
|
2025-05-15 01:20:44 +02:00
|
|
|
left: 22rem;
|
2025-05-13 02:02:46 +02:00
|
|
|
bottom: 4rem;
|
|
|
|
|
|
|
|
padding: 3rem;
|
|
|
|
|
2025-05-15 01:20:44 +02:00
|
|
|
background-color: #1a1a1a;
|
2025-05-13 02:02:46 +02:00
|
|
|
color: #eaeaea;
|
|
|
|
|
|
|
|
border: #3a3a3a solid;
|
|
|
|
border-width: .1em;
|
|
|
|
border-radius: .5rem;
|
|
|
|
|
2025-05-15 01:20:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Page transitions */
|
|
|
|
|
|
|
|
.page {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.2s ease-out; /* Adjust duration and easing */
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-enter {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-enter-active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-exit {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-exit-active {
|
|
|
|
opacity: 0;
|
2025-05-12 19:31:19 +02:00
|
|
|
}
|