Get the color scheme all fancy
This commit is contained in:
parent
7df154596b
commit
37238e864b
1 changed files with 15 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
||||||
:root {
|
:root {
|
||||||
color-scheme: light dark;
|
color-scheme: light dark;
|
||||||
|
color: light-dark(#474747, #b9b9b9);
|
||||||
|
background-color: light-dark(#ebebeb, #252525);
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
@ -9,5 +11,16 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-body {
|
.post-body {
|
||||||
max-width: 80%;
|
width: 66%;
|
||||||
|
display: block;
|
||||||
|
padding: 1rem;
|
||||||
|
background-color: light-dark(#ffffff, #181818);
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-body > h1 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-body > p {
|
||||||
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue