diff --git a/README.md b/README.md index e98a38a..6e51dcd 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,33 @@ Modification légère du CSS pour les couleurs pour l'interface de Pixelfed via * A mettre dans Stylus : ```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 { --light: #000 !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; --blue: #567ebf; } + +/* Color for time */ .badge-light { color: #fff; }