Last active
June 11, 2024 03:39
-
-
Save darylducharme/511cfdcd63efc5a2fd431d8977604e80 to your computer and use it in GitHub Desktop.
CSS I used for OBS to make chunkbase map show up without ads and other extras.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Remove the top and just get right to the Seed Map */ | |
#pageheader { | |
display:none; | |
} | |
/* Remove ads */ | |
.adthrive-ad, .adthrive, .adthrive-footer { | |
display: none; | |
} | |
/* Don't show the seed but do show goto X,Y */ | |
div.fancy-row:first-of-type { display:none; } | |
div.fancy-row.slim:first-of-type {display: block } | |
/* Make the app take up the full width of the display */ | |
div#content, div#main-content, div#main { | |
margin: 0 0; | |
width: 100%; | |
max-width: 100%; | |
} | |
#main.wide .box { | |
max-width: 100%; | |
} | |
/* Don't show any boxes but the seed map */ | |
aside.box { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment