made it a bit more responsible

This commit is contained in:
Yannik
2023-05-20 19:22:07 +02:00
parent 6c3d14f7dd
commit a57a30eb71

View File

@@ -1,5 +1,17 @@
@import "./_variables.scss";
:root {
color-scheme: dark;
accent-color: $accent-color;
caret-color: $accent-color;
}
::selection{
background-color: $accent-color;
}
::marker{
color: $accent-color;
}
body {
font-family: system-ui, sans-serif;
background-color: #0a0a0a;
@@ -8,14 +20,14 @@ body {
margin: -10px;
width: 100%;
height: 100%;
position: absolute;
box-shadow:
inset 60px 0 120px rgba($primary-color, 0.2),
inset -60px 0 120px rgba($accent-color, 0.07);
position: absolute;
}
.wip-title {
margin-top: 100px;
margin: 100px;
font-size: 50px;
text-align: center;
color: white;
@@ -51,4 +63,15 @@ body {
p{
font-size: 20px;
}
}
@media (max-width: 800px) {
.wip-title{
font-size: 30px;
margin: 100px;
margin-top: 50px;
}
.card {
margin-top: 20%;
width: 60%;
}
}