chore(release): 0.1.0 #4

Merged
pufereq merged 53 commits from release/0.1.0 into main 2025-08-09 15:03:45 +00:00
3 changed files with 71 additions and 3 deletions
Showing only changes of commit 04c46f1e98 - Show all commits

View File

@@ -4,6 +4,27 @@
box-sizing: border-box;
}
body {
background-color: #b48ead;
font-family: monospace, sans-serif !important;
color: #eceff4;
}
input {
font-family: inherit;
color: #eceff4;
background-color: #434c5e;
border: none;
border-radius: 0.25rem;
padding: 0.25rem;
}
#wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
display: flex;
justify-content: space-between;
@@ -14,7 +35,32 @@ header {
}
main {
padding: 2rem;
background-color: #eceff4;
color: #2e3440;
padding: 1rem;
background-color: #3b4252;
flex-grow: 1;
}
header a {
text-decoration: none;
color: #eceff4;
}
.button {
display: inline-block;
padding: 0.5rem 1rem;
background-color: #8fbcbb;
color: #2e3440;
border: none;
border-radius: 0.25rem;
text-decoration: none;
transition: 0.3s ease-in-out;
}
.button:hover {
background-color: #81a1c1;
cursor: pointer;
}
.center {
text-align: center;
}