Prototype post title style

This commit is contained in:
Cheri 2023-09-07 10:05:34 +03:00 committed by vib
parent 58d06e9f0d
commit 71614e3481
3 changed files with 23 additions and 3 deletions

View file

@ -13,6 +13,7 @@ html {
--link_h: #771e2d;
--bg_grey: #ebadc1;
--dark_grey: #f46c97;
--title: #f46c9750;
}
@media (prefers-color-scheme: dark) {
:root {
@ -23,6 +24,7 @@ html {
--link_h: #f94578;
--bg_grey: #2d2531;
--dark_grey: #221c25;
--title: #221c2550;
}
}
@ -361,3 +363,13 @@ footer {
padding: 5px;
font-size: 13px;
}
.title {
background-color: var(--title);
padding: 5px;
text-align: right;
}
.title h1 {
text-align: center;
}