MediaWiki:Common.css

From 18TRIP Wiki
Revision as of 01:46, 4 April 2024 by Shiroutalpha (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
	@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;
}

/*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;
}