Skip to content

F95Fix by ozzymand

Screenshot of F95Fix

Details

Authorozzymand

LicenseNo License

Categoryf95zone.to

Created

Updated

Size1.5 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

A "Work-In-Progress" style that aims to fix some issues I have with f95zone

Notes

Currently implemented:

  • Max width posts
  • Max width navbar

Source code

/* ==UserStyle==

@name           F95Fix
@namespace      github.com/openstyles/stylus
@version        1.0.3
@description	A "Work-In-Progress" style that aims to fix some issues I have with f95
@author         Me

==/UserStyle== */

@-moz-document regexp(".*f95zone.to\\/threads\\/.*") {
	/* Post body */
	.p-body-inner{
		max-width: 100%;
	}
	/* Tags and title */
	.p-pageWrapper > .p-body-header .pageContent{
		max-width: 100%;
	}
	/* Navbar */
	.p-nav-inner{
		max-width: 100%;
		backdrop-filter: blur(5px);
		background: #2426290f;
	}
	.uix_headerContainer .p-navSticky.is-sticky .p-nav,
	.p-nav{
		backdrop-filter: blur(10px);
		background: #242629c7;
	}
	
	
	/* Experimental, not working rn */
/* 	.notices{
		width: 44px;
		height: 55px;
		transition: height 2s ease;
		transition: width 0.5s ease;
	}
	.notice-content{
		height: 0px;
		width: 0px;
		opacity: 0;
		overflow: hidden;
	}
	
	.notices:hover{
		width: 90%;
		height: 55px;
	}
	.notice-content:hover{
		height: 55px;
		width: 100%;
		opacity: 100%;
	} */
	
}

@-moz-document regexp(".*f95zone.to\\/sam\\/.*"){
	/* Parity with post-view navbar */
	.p-nav-inner{
		max-width: 100%;
		backdrop-filter: blur(5px);
		background: #2426290f;
	}
	.uix_headerContainer .p-navSticky.is-sticky .p-nav,
	.p-nav{
		backdrop-filter: blur(10px);
		background: #242629c7;
	}
	/* Change tag background to lower red */
	div#latest-page_items-wrap_inner div.resource-tile a.resource-tile_link div.resource-tile_hover-wrap div.resource-tile_tags span{
		background: #923232;
	}
}

Reviews

No reviews yet.