Toggle 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
Content added Content deleted
No edit summary
(Update fonts)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Syne:wght@400..800&display=swap');


body {
body {
background-color: #fefefe;
background-color: #fefefe;
font-family: "Inter";
}
}


Line 26: Line 28:
width:50px;
width:50px;
height:50px;
height:50px;
}

h1,
h2 {
font-family: "Syne";
}

.mw-logo-wordmark {
font-family: "Syne";
}
}



Revision as of 03:24, 8 June 2024

/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Syne:wght@400..800&display=swap');

body {
	background-color: #fefefe;
	font-family: "Inter";
}

a {
	color: #23A06B;
}

.citizen-header {
	background-color: #f7f7f7;
	--header-button-size: 60px;
}

.citizen-header__button#citizen-pref-toggle {
    pointer-events: none;
    opacity: 0;
    /* Optional: Add additional styles to convey disabled state */
    background-color: #f2f2f2;
    color: #999;
    cursor: not-allowed;
}

.mw-logo-icon{
	width:50px;
	height:50px;
}

h1,
h2 {
	font-family: "Syne";
}

.mw-logo-wordmark {
	font-family: "Syne";
}

.citizen-menu__card {
	background-color: #e8e8e8;
}

pre{
	background-color: #fbfbfb;
}

.citizen-footer {
	background-color: #fbfbfb;
	box-sizing: border-box;
    border-top: 5px solid transparent;
    border-image-source: linear-gradient(90deg,#45FFB1 0%, #23a06b 55%,#0d3a27  100%);
    border-image-slice: 1;
}

@media screen and (max-width: 1119px) {
    .citizen-scroll--down .citizen-header {
        transform: none;
        transition-property: none;
    }
}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.