Limits the page body to a reasonable width, even on absurdly wide screens.
cogg.contrarium.net - widescreen by jrobsonchase
Details
Authorjrobsonchase
LicenseMIT
Categorycogg.contrarium.net
Created
Updated
Size440 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Yell at jerc in discord if it breaks.
Should apply to the entire site - wiki, bbs, changelog, etc.
Fixes both the main body of the page, and makes the background of the navigation iframe properly transparent so that it doesn't clash with the rest of the page.
Source code
/* ==UserStyle==
@name cogg.contrarium.net - widescreen
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Widescreen fix for COGG BBS
@author jerc
==/UserStyle== */
@-moz-document domain("cogg.contrarium.net") {
body {
max-width: 1280px;
margin: 0 auto;
}
html[stylus-iframe*="cogg.contrarium.net"] body {
background: transparent;
}
}