Better OLD reddit
old.reddit.com - 6/25/2023, 9:33:05 AM by YesSeri
Details
AuthorYesSeri
LicenseNo License
Categoryold.reddit.com
Created
Updated
Code size881 B
Code checksum9882a6f5
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name old.reddit.com - 6/25/2023, 9:33:05 AM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Better OLD reddit
@author Henrik Zenkert
==/UserStyle== */
@-moz-document domain("old.reddit.com") {
body {
border-left: 1px solid black;
border-right: 1px solid black;
background-color: #cee3f8;
display: grid;
grid-template-areas: "header header" "content content" "listings side";
max-width: 800px;
margin: 0 auto !important;
}
.content {
max-width: 800px;
margin: 0 auto !important;
grid-area: content;
background-color: white;
}
.side {
color: black;
grid-area: side;
position: absolute;
right: 0px;
}
.listing-chooser {
width: 100%;
display: block;
position: unset !important;
grid-area: listings;
}
#header {
grid-area: header;
}
.grippy {
display: none;
}
}