Compare commits

...

2 commits

Author SHA1 Message Date
c82f5348e3 Update screenshot 2023-07-10 10:30:07 +02:00
f6f4517b96 Update README.md 2023-07-10 10:29:47 +02:00
2 changed files with 29 additions and 0 deletions

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 :
```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;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 336 KiB

After

Width:  |  Height:  |  Size: 198 KiB