Initial commit

This commit is contained in:
2025-12-23 10:56:22 +11:00
commit 876b04ba84
4 changed files with 346 additions and 0 deletions

105
index.css Normal file
View File

@@ -0,0 +1,105 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');
.box {
margin-left: 10%;
margin-right: 10%;
margin-top: 5%;
padding: 5%;
padding-top: 3%;
border-radius: 10px;
background-color: #161031;
color: white;
font-family: "Inter";
font-size: 25px;
}
#main {
padding-top: 5%;
display: flex;
flex-direction: row;
gap: 40px;
align-items: center;
}
.hero_content {
flex: 1;
}
.code {
background-color: #080511;
padding: 20px;
border-radius: 8px;
border: 1px solid #26146b;
font-family: 'JetBrains Mono', monospace;
font-size: 16px;
color: #a594f9;
flex: 1;
}
.feature {
border-radius: 10px;
border: 2px solid #26146b;
background-color: #15094a;
font-size: 25px;
padding: 2%;
padding-top: 0.5%;
width: auto;
min-width: 350px;
flex: 1;
}
.feature-row {
display: flex;
flex-direction: row;
gap: 20px;
margin-top: 20px;
max-height: 600px;
overflow-y: auto;
}
.big {
font-size: 40px;
font-family: "Inter";
}
button {
font-family: "Inter";
font-size: 30px;
color: white;
background-color: #15094a;
padding: 20px;
border-width: 0;
border-radius: 10px;
}
body {
background-color: #080511;
}
h1 {
font-family: "Zalando Sans Expanded", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-size: 60px;
font-style: normal;
}
h2 {
font-family: "Zalando Sans Expanded", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-size: 50px;
font-style: normal;
}
h3 {
font-family: "Zalando Sans Expanded", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-size: 35px;
font-style: normal;
}
a {
color: white;
}