MediaWiki:Mainpage.css: Difference between revisions

From Blockate Wiki
Content added Content deleted
No edit summary
No edit summary
Line 57: Line 57:
}
}


.social-button-content {
.social-button a {
display: flex;
justify-content: center;
}

.social-button-content a {
text-decoration: none;
text-decoration: none;
}
}

Revision as of 15:56, 1 November 2022

.mainpagebox {
	margin-bottom: 20px;
	padding:1em;
	font-family:rubik;
	border-left:5px solid #ff5959;
	border-radius: 0px 10px 10px 0px;
	color:#000000;
	background-color:#e5e4df;
}

.mainpageheader {
	color:#000000;
	font-size:24px;
}

.mainpagetitle {
	color:#000000;
	font-family:rubik;
}

/* container classes */
.container-frame {
	margin: 10px;
	padding: 2em;
	border-radius: 3px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	display: flex;
}

.container-frame--discord {
	background-color: #5865F2;
}
.container-frame--twitter {
	background-color: #1DA1F2;
}
.container-frame--roblox {
	background-color: #FF5751;
}
.container-frame--blockate {
	background-color: #458E40;
}

.social-button {
	text-align: center;
	padding: 0.5em;
	color: #fff;
	border-radius: 6px;
	transition: box-shadow 0.2s ease-in-out;
	border: 2.5px solid #fff;
	font-size: 14px;
	font: Rubik;
}

.social-button:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 4px 15px rgba(0, 0, 0, 0.1);
	text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.social-button a {
	text-decoration: none;
}