add tag and author font fixes

This commit is contained in:
ch0ccyra1n 2022-09-07 14:18:57 -07:00
parent 02dfb9d936
commit 05caa58505

View file

@ -8,12 +8,31 @@
text-decoration: none;
color: #FF535D;
}
code {
pre, code {
background-color: #3B3C43;
color: #E7DBDA;
}
.author-name {
background-color: #B5ADAD;
border-radius: 4px;
padding: 5px 10px;
font-family: 'Liberation Mono', monospace;
}
.author-name:hover {
background-color: #CEC4C4;
}
.tag {
background-color: #34353B;
border-radius: 4px;
padding: 5px 10px;
font-family: 'Liberation Mono', monospace;
}
.tag:hover {
background-color: #2D2E33;
}
}
/* Light Mode */
@media (prefers-color-scheme: light) {
body {
@ -23,10 +42,28 @@
text-decoration: none;
color: #FF535D;
}
code {
pre, code {
background-color: #A9A2A2;
color: #1f2023;
}
.author-name {
background-color: #34353B;
border-radius: 4px;
padding: 5px 10px;
font-family: 'Liberation Mono', monospace;
}
.author-name:hover {
background-color: #2D2E33;
}
.tag {
background-color: #B5ADAD;
border-radius: 4px;
padding: 5px 10px;
font-family: 'Liberation Mono', monospace;
}
.tag:hover {
background-color: #CEC4C4;
}
}
/* Universal */