Style infobars

This commit is contained in:
ltGuillaume 2021-01-20 23:24:46 +01:00
parent dc7de1eaab
commit d47da7f6dc
1 changed files with 11 additions and 5 deletions

View File

@ -10,6 +10,7 @@
--shadow: #9e9e9e; --shadow: #9e9e9e;
--buttonbg: #f2f0ea; --buttonbg: #f2f0ea;
--buttontext: #53524b; --buttontext: #53524b;
--infobarbg: #ebe6b6;
--oddbg: #e2dfd7; --oddbg: #e2dfd7;
--oddborder: #616161; --oddborder: #616161;
--evenbg: #f2f0ea; --evenbg: #f2f0ea;
@ -134,6 +135,9 @@ body.sepia #links.search {
width: calc(100% - 40px); width: calc(100% - 40px);
} }
/* Comments */ /* Comments */
body.sepia #post header div a {
color: var(--headerfaded);
}
body.sepia #post .score { body.sepia #post .score {
color: var(--graytext); color: var(--graytext);
} }
@ -154,8 +158,10 @@ body.sepia #post .crosspost {
body.sepia #post .crosspost { body.sepia #post .crosspost {
padding: 0 16px 16px 0; padding: 0 16px 16px 0;
} }
body.sepia #post header div a { body.sepia .infobar {
color: var(--headerfaded); background: var(--infobarbg);
border-radius: 3px;
box-shadow: 0 0 2px var(--shadow);
} }
body.sepia .comment { body.sepia .comment {
background: var(--oddbg); background: var(--oddbg);
@ -210,7 +216,7 @@ body.sepia .comments > form button {
} }
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
body.sepia #sidebar { body.sepia #sidebar {
width: 100%; width: 100%;
} }
} }