Update README.md

This commit is contained in:
Kazuky Akayashi 2023-07-10 10:29:47 +02:00
parent 664387da86
commit f6f4517b96

View file

@ -9,6 +9,33 @@ Modification légère du CSS pour les couleurs pour l'interface de Pixelfed via
* A mettre dans Stylus : * A mettre dans Stylus :
```css ```css
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #171a1d #31363b;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 8px;
}
*::-webkit-scrollbar-track {
background: #31363b;
}
*::-webkit-scrollbar-thumb {
background-color: #171a1d;
border-radius: 30px;
border: 3px none #ffffff;
}
/* Search */
.metro-nav .autocomplete-input {
background-color: var(--body-bg);
}
/* Dark mode */
.force-dark-mode { .force-dark-mode {
--light: #000 !important; --light: #000 !important;
--dark: #fff !important; --dark: #fff !important;
@ -32,6 +59,8 @@ Modification légère du CSS pour les couleurs pour l'interface de Pixelfed via
--primary: #567ebf; --primary: #567ebf;
--blue: #567ebf; --blue: #567ebf;
} }
/* Color for time */
.badge-light { .badge-light {
color: #fff; color: #fff;
} }