A style to make Girl Genius comic website only show the comic + controls and nothing else
girlgeniusonline.com - Only Comic by olee
Details
Authorolee
LicenseNo License
Categoryhttps://www.girlgeniusonline.com/comic.php
Created
Updated
Size713 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name girlgeniusonline.com - Only Comic
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A style to make Girl Genius comic website only show the comic + controls and nothing else
@author Olee
==/UserStyle== */
@-moz-document url-prefix("https://www.girlgeniusonline.com/comic.php") {
#comicarea {
position: absolute;
left: 0;
top: 0;
right: 0;
width: auto;
z-index: 99;
display: flex;
flex-direction: column;
align-items: center;
}
#header, #sidebar, #comicdiv, #newsarea {
display: none;
}
#wrapper {
background-image: none;
}
}