MediaWiki:Common.css: Difference between revisions

From 18TRIP Wiki
Content added Content deleted
No edit summary
No edit summary
Line 31: Line 31:
}
}


.homepage-title {
.homepage-header .homepage-title {
position: absolute;
position: absolute;
bottom: 10%;
bottom: 10%;
Line 42: Line 42:
}
}


.homepage-subtitle {
.homepage-subhead {
font-size: 130%;
font-size: 130%;
font-weight: bolder;
font-weight: bolder;

Revision as of 02:02, 4 April 2024

	@import url("/load.php?mode=articles&only=styles&articles=MediaWiki:Infoboxes.css|MediaWiki:Links.css|MediaWiki:Discord.css");
    /* CSS */


/*Center Tabber*/

.mw-parser-output .wds-tabs__tab:first-child {
	margin-left: auto;
}

.mw-parser-output .wds-tabs__tab:last-child {
	margin-right: auto;
}

/*Homepage*/


.homepage-img {
	-webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
	border-radius: 20px 20px 0px 0px;
}

.homepage-img img {
	width: 100%;
	height: auto;
}

.homepage-header {
	position: relative;
	top: -300%;
}

.homepage-header .homepage-title {
	position: absolute;
	bottom: 10%;
	font-size: 300%;
	font-weight: bolder;
	line-height: 1.1;
	color: #323232;
	text-shadow: 0px 0px 30px #C8FF46, 0px 0px 20px #C8FF46, 0px 0px 10px #323232;
	padding: 0% 4%;
}

.homepage-subhead {
	font-size: 130%;
	font-weight: bolder;
	padding: 0% 4%;
}

/*Character Nav*/

.charanav {
	margin: auto;
	display: inline-block;
	width: auto;
	height: auto;
	text-align: center;
	font-size:85%;
}

.charanav .cn-img {
	position: relative;
	display: inline-block;
}

.charanav .cn-img:hover {
	transform: scale(1.1);
	transition: all 1s;
}

.cn-img .cn-img-top {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	opacity: 0.5;
}
    
.cn-img:hover .cn-img-top {
	display: inline;
}

/*Scrollbar*/
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	overflow-y: scroll;
}

::-webkit-scrollbar-thumb {
	background: #323232;
	border-radius: 20px;
}

::-webkit-scrollbar-track {
	background: #ffffff;
	border-radius: 12px;
}