MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 8: Line 8:
box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 40%);
box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 40%);
border-bottom: 1px solid #202328;
border-bottom: 1px solid #202328;
}
#sidebar {
min-width: 300px;
max-width: 300px;
margin-left: 1rem;
}
}


Line 85: Line 91:
}
}


#sidebar {
.alert {
min-width: 300px;
padding: 1rem;
max-width: 300px;
margin-bottom: 1rem;
margin-left: 1rem;
border: none;
border-radius: 0;
}
 
.alert-success {
    border-color: #458e46;
    background: linear-gradient(135deg,rgb(69 142 70 / 30%) 0%,rgba(255,255,255,0) 100%);
}
}
/* Maind end */
/* Maind end */

Revision as of 00:28, 23 October 2023

/* Main */
body {
	background-color: #0e1015;
}

.navbar {
	background-color: #13151b!important;
	box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 40%);
	border-bottom: 1px solid #202328;
}

#sidebar {
	min-width: 300px;
	max-width: 300px;
	margin-left: 1rem;
}

#page-content {
	width: 100%;
}

.page-container {
	background-color: #13151b;
	color: #999ca3;
	border-left: 1px solid;
	border-right: 1px solid;
	border-color: #202328;
	padding: 1rem;
}

a {
	color: #f3ca4e;
	text-decoration: none;
}

a:hover {
	color: #f3ca4e;
	text-decoration: underline;
}

a.new {
	color: #ff5859;
	text-decoration: none;
}

a.new:hover {
	color: #ff5859;
	text-decoration: underline;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	color: #fff;
}

h1, h2 .h1, .h2 {
	border-bottom: 1px solid rgb(255 255 255 / 20%);
	padding-bottom: 0.5rem;
}

footer {
	font-size: 80%;
	opacity: 0.5;
}

footer ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
}

.default-box {
	background: rgb(255 255 255 / 3%);
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	border-radius: 0.5rem;
}

.default-box h1, .default-box h2, .default-box h3, .default-box h4, .default-box h5, .default-box h6, .default-box .h1, .default-box .h2, .default-box .h3, .default-box .h4, .default-box .h5, .default-box .h6 {
	border-bottom: 1px solid rgb(255 255 255 / 20%);
	padding-bottom: 0.5rem;
}

.class-link {
	margin-right: 1rem;
	margin-bottom: 1rem;
	text-align: center;
}

.class-link a {
	margin: 0 auto;
}

.alert {
	padding: 1rem;
	margin-bottom: 1rem;
	border: none;
	border-radius: 0;
}

.alert-success {
    border-color: #458e46;
    background: linear-gradient(135deg,rgb(69 142 70 / 30%) 0%,rgba(255,255,255,0) 100%);
}
/* Maind end */

/* Screen specific */
@media (max-width: 1080px) {
	#sidebar {
		display: none;
	}
}
/* Screen specific end */

/* Misc */
#footer-privacy, #footer-about, #footer-disclaimer {
	display: none;
}

.default-box .mw-editsection {
	display: none;
}

.mw-editsection {
	font-size: 0.75rem;
	margin-left: 1rem;
}

.printfooter {
	display: none;
}
/* Misc end */