refactor(style.css): add barebones stylesheet

This commit is contained in:
2025-06-16 10:31:03 +02:00
committed by Artur Borecki
parent 2786f39b9b
commit 04c46f1e98

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;
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;
}