design fixes

This commit is contained in:
Áron Hegymegi-Kiss
2021-12-15 22:22:06 +01:00
parent 9a9e564dbf
commit 46e515b130
5 changed files with 137 additions and 40 deletions

View File

@@ -60,6 +60,8 @@ body {
text-decoration: none;
border-radius: 15px;
transition: font-size 1s;
}
@@ -199,4 +201,23 @@ svg {
p,li,code,a {
text-align: center;
}
}
/* Light mode, if requested */
@media only screen and (prefers-color-scheme: light) {
html {
color-scheme: light;
}
body {
background-color: #f9f9f9;
}
p,li,a {
color: #262626;
}
h1,h2,h3,h4,h5,h6 {
color: #707070;
}
#title {
color: white;
}
}