I love this so much, but is there any way to either move the floating bar tighter to the top of the page so it doesn't obstruct posts as much, or turn off it's floating?
Lemmy.World Announcements
This Community is intended for posts about the Lemmy.world server by the admins.
Follow us for server news ๐
Outages ๐ฅ
https://status.lemmy.world
For support with issues at Lemmy.world, go to the Lemmy.world Support community.
Support e-mail
Any support requests are best sent to info@lemmy.world e-mail.
Report contact
- DM https://lemmy.world/u/lwreport
- Email report@lemmy.world (PGP Supported)
Donations ๐
If you would like to make a donation to support the cost of running this platform, please do so at the following donation URLs.
If you can, please use / switch to Ko-Fi, it has the lowest fees for us
Join the team
Super awesome! Appreciate the UI upgrade.
I really like the look of that! Thanks for sharing!
I love it, thanks a lot. :) You could add "feddit.de" as a domain as well, it's the same but for German communities.
Oh nice! Never used any CSS or user.styles stuff before, but that was easy and worked.
Now watch me be too stupid to try an ever change anything about it for myself...
I'm new to installing custom themes like this and cannot find documentation on the userstyles.world website. Anyone have a description on how to install it?
I love it! Any possibility to change the ugly teal/green link color to something else? Orange maybe?
A quick fix to that is, if you change the theme from your lemmy settings to darkly-red. I will look into that ;)
Great work, looking forward to it!
Also, is it possible to lower the overall (but not alla) font size? Some elements gets way too small though if I zoom out the entire page (ctrl+down). I think it is mostly titles and general text that could be lowered.
Sure ;)
This should do the trick. Just add this to the style. It also changes the color of the links to orange, even if you have darkly theme. You can then adjust the size of the fonts according to your taste.
body {
font-size: 0.8rem;
}
.h5, h5 {
font-size: 1rem;
}
a {
color: #ff8300;
}
Thank you! I fiddled around with the values and this is what I came up with:
body, .form-control {
font-size: 0.8rem;
}
.h5, h5 {
font-size: 1rem;
font-weight: 600;
}
.small, .btn {
font-size: 0.75rem;
}
.badge {
font-size: 85%;
}
.text-warning {
color: #ffdd55 !important
}
Btw, I noticed the arrows above and under the total votes wandered away. Is it possible to fix?