Revert "Fix private repos appearing white"

This reverts commit b20f7b8f3f.
This commit is contained in:
Sasha Koshka 2022-08-09 23:52:00 -04:00 committed by emma
parent ead429dbd0
commit 697a95d18d
1 changed files with 24 additions and 8 deletions

View File

@ -9,15 +9,20 @@
@font-face {
font-family: Ubuntu;
src: url("https://tebibyte.media/blog/assets/ubuntu.ttf") format("ttf"),
url("https://tebibyte.media/blog/assets/ubuntu.woff2") format("woff2"),
url("https://tebibyte.media/blog/assets/ubuntu.woff") format("woff");
src: url("https://tebibyte.media/assets/fonts/ubuntu.ttf") format("ttf"),
url("https://tebibyte.media/assets/fonts/ubuntu.woff2") format("woff2"),
url("https://tebibyte.media/assets/fonts/ubuntu.woff") format("woff");
}
@font-face {
font-family: Ubuntu Mono Ligaturized;
src: url("https://tebibyte.media/assets/fonts/UbuntuMonoLigaturized-Regular.ttf") format("ttf");
}
:root {
--fonts-override: Ubuntu !important;
--fonts-monospace: Mononoki !important;
--fonts-monospace: Ubuntu Mono Ligaturized !important;
--is-dark-theme: true;
--textured-background: url("https://tebibyte.media/blog/assets/tib_bg.jpg");
--color-primary: hsl(0, 80%, 40%);
@ -525,6 +530,17 @@ img[src$="/img/matrix.svg"] {
color: var(--color-text);
}
.feeds .list ul li.private {
background-color: hsla(20, 40%, 50%, .08);
}
/*
* martian.css is free software: you can redistribute and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* martian.css is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with martian.css. If not, see <https://www.gnu.org/licenses/agpl-3.0.en.html>.
*/