Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
imported>SamuraiEzoiar
test 2
imported>SamuraiEzoiar
No edit summary
Line 21: Line 21:
box-shadow: 2px 2px 2px #000000;
box-shadow: 2px 2px 2px #000000;
}
}
.NavInfo {
width: 100%;
height: 150px;
position: absolute;
top: 127px;
left: 0;
z-index: 1;
background-color: #000;
background-color: rgba(0, 0, 0, 0.6);
-webkit-transition: top 0.3s linear;
-moz-transition: top 0.3s linear;
-o-transition: top 0.3s linear;
transition: top 0.3s linear;
}

Revision as of 19:59, 30 October 2022

/* CSS placed here will be applied to all skins */
@import "/load.php?mode=articles&articles=u:dev:MediaWiki:ActivityFeedMimic.css&only=styles";

.NavButton:hover .NavInfo, .NavButton:hover .AppInfo {
    top: 0;
}

.NavButton {
	width: 150px;
	border: 1px solid #111111;
	min-height: 150px;
	background: #333333 center;
	margin-bottom: 1em;
	margin:0 auto;
	position: relative;
	overflow: hidden;
	color: #FFF;
	cursor: pointer;
	-moz-box-shadow: 2px 2px 2px #000000;
	-webkit-box-shadow: 2px 2px 2px #000000;
	box-shadow: 2px 2px 2px #000000;
	}

.NavInfo {
	width: 100%;
	height: 150px;
	position: absolute;
	top: 127px;
	left: 0;
	z-index: 1;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.6);
	-webkit-transition: top 0.3s linear;
	-moz-transition: top 0.3s linear;
	-o-transition: top 0.3s linear;
	transition: top 0.3s linear;
}