initial version of website

This commit is contained in:
2026-07-22 05:26:19 +01:00
parent 0992e183aa
commit 4527246427
6 changed files with 124 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
body {
height: 100vh;
background: url("clouds_test.png"), linear-gradient(180deg, hwb(224 30% 0%) 0%, hwb(226 90% 0%) 100%);
background-repeat: no-repeat;
background-size: cover, cover;
padding: 20px;
}
* {
font-family: Inter, sans-serif;
color: white
}
p, a {
font-size: 20px;
@media (max-width: 1024px) {
font-size: 30px
}
font-style: italic;
}
p {
font-weight: 300;
}
a {
font-weight: 400;
}
.flex {
display: flex;
width: fit-content;
}
.flex-col {
flex-direction: column;
}
:root { --space: 4px }
.gap-1 { gap: calc(var(--space) * 1); }
.gap-2 { gap: calc(var(--space) * 2); }
.gap-3 { gap: calc(var(--space) * 3); }
.gap-4 { gap: calc(var(--space) * 4); }
.pop {
display: inline-block;
transform-origin: left center;
transition: transform 0.1s ease;
}
.pop:hover {
transform: scale(1.25);
}