fix(a11y): only if this is screen we will change these

Signed-off-by: Alexander J <odyssey346@disroot.org>
This commit is contained in:
Alexander J 2022-04-22 21:21:09 +02:00
parent cc4772dc60
commit af0ea2f341

View File

@ -4,6 +4,7 @@ body {
background-color: #101010; background-color: #101010;
color: white; color: white;
font-family: 'Comfortaa', sans-serif; font-family: 'Comfortaa', sans-serif;
margin: 0;
} }
a { a {
@ -17,6 +18,10 @@ a.visited {
color: #5f1919; color: #5f1919;
} }
.center {
text-align: center;
}
.card { .card {
display: flex; display: flex;
justify-content: space-evenly; justify-content: space-evenly;
@ -74,7 +79,7 @@ a.visited {
word-wrap: break-word; word-wrap: break-word;
} }
@media (max-width: 800px) { @media screen and (max-width: 800px) {
.card { .card {
flex-direction: column; flex-direction: column;
} }