XDA-Developers Clean Plus
by daviszerro
Details
Authordaviszerro
LicenseCC-BY 4.0
Categoryxda-developers.com
Created
Updated
Size822 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Just my personal preference to make XDA cleaner and more confortable to read.
- Top bar no longer sticky at top and only stay at page top.
- Slightly reduce article font width, bigger font size, more line height.
- Sidebar hide by default and visible while hover.
Notes
Userstyle doesn't have notes.
Source code
/* ==UserStyle==
@name XDA-Developers Clean Plus
@namespace example.com
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("xda-developers.com") {
/* reduce width, bigger font size for better reading. */
article.message-body.js-selectToQuote {
width: 89%;
margin: auto;
font-size: 1.1em !important;
line-height: 180%
}
/* annoying news please get out of my face. */
div.p-body-sidebar {
opacity: 0 !important;
transition: 1500ms !important;
}
div.p-body-sidebar:hover {
opacity: 1 !important;
transition: 200ms !important;
}
/* don't let useless top bar always taking up your reading space. */
div.p-navSticky.p-navSticky--all.is-sticky {
position: absolute !important;
}
}