A simple change to lotuseaters.com to make the player larger and less important content smaller. Settings for chosing what to minimise and what to focus.
LotusEaters Theatre-ish by LKD70
Details
AuthorLKD70
LicenseAGPL-3.0
Categorylotuseaters.com
Created
Updated
Size2.8 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Please check the settings once installed to configure to your liking.
Source code
/* ==UserStyle==
@name LotusEaters Bigger Player
@namespace LKD70
@version 1.0.0
@description A simple change to lotuseaters.com to make the player larger and less important content smaller.
@author LKD70 (https://github.com/LKD70)
@license AGPL-3.0
@version 0.1.0
@preprocessor stylus
@var checkbox hideSoundcloud "Hide Soundcloud" 1;
@var checkbox wideMode "Wide Mode" 1
@var checkbox ultrawideMode "Ultrawide (Hides sggested video sidebar, title, etc...)" 0
@var checkbox smallNav "Use Smaller Navbar" 1
@var checkbox hideDownloadButtons "Hide Download Buttons?" 1
==/UserStyle== */
@-moz-document domain("lotuseaters.com") {
if (smallNav) {
.mainNav,
.navBar {
height: 30px;
max-height: 30px;
}
.navBar__left,
.navBar__right {
height: 30px;
}
.navBar__fixed {
height: 30px
}
.mainNav nav.navBar {
grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
}
}
/* Remove 4:3 columns */
if (wideMode) {
.viewContainer {
width: 100%;
padding-top: 60px;
}
}
/* Hide banner */
.post__featuredImage {
display: none;
}
if (ultrawideMode) {
.post__intro,
.post__body div p i b span,
.post__meta {
display: none !important
}
.viewContainer {
if (smallNav) {
padding: 15px 0 0 0;
}
else {
padding: 50px 0 0 0;
}
}
}
/* centre post title */
.post__intro {
margin-left: 70%;
}
/* centre post metadata, removes socials */
.post__meta {
margin-left: 50%;
}
/* Enlarge column for video content, making previous posts column smaller */
article.view.post.post--podcast section {
if (ultraWide) {
grid-template-columns: 100% auto;
}
else {
grid-template-columns: 90% auto;
}
}
/* Hide Soundcloud player */
if (hideSoundcloud) {
.audioPlayer {
display: none;
}
}
/* Make Download buttons less massive */
p a img {
width: 4% !important;
if (hideDownloadButtons) {
display: none;
}
}
/* Hide membership teir banner */
.premium-block {
display: none;
}
/* Remove padding from video top */
article.post main {
padding-top: 0;
}
/* Remove previous podcasts header */
.pageListing__title {
display: none;
}
}