MediaWiki:Common.css: Difference between revisions
From Eco - Meta Wiki
Created page with "@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); * { font-family: 'Roboto', sans-serif; }" |
No edit summary |
||
| (6 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* Custom Font */ | |||
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); | @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); | ||
/* Dark Mode */ | |||
.client-darkmode img, .embedvideo-overlay { | |||
filter: invert(1) hue-rotate(180deg) !important; | |||
} | |||
/* Framework */ | |||
* { | * { | ||
font-family: 'Roboto', sans-serif; | font-family: 'Roboto', sans-serif; | ||
} | |||
body { | |||
background-image: url(https://wiki.play.eco/cubes.png); | |||
background-color: #FAFAFA; | |||
} | |||
#ooui-php-3 { | |||
position: absolute; | |||
width: 50%; | |||
} | |||
.ace_editor * { | |||
font-family: monospace !important; | |||
} | |||
.mw-changeslist-legend { | |||
position: absolute; | |||
margin: 45px 0px 0px 0px; | |||
} | |||
/* Banner */ | |||
.headbanner span img { | |||
width: 100%; | |||
height: auto; | |||
} | |||
/* Table of Contents */ | |||
.toc { | |||
border: 5px solid #A9A9A9; | |||
padding: 10px; | |||
float: right; | |||
margin: 0px 30px 30px 30px; | |||
width: 300px; | |||
clear: right; | |||
} | } | ||
Latest revision as of 18:17, 16 January 2026
/* Custom Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/* Dark Mode */
.client-darkmode img, .embedvideo-overlay {
filter: invert(1) hue-rotate(180deg) !important;
}
/* Framework */
* {
font-family: 'Roboto', sans-serif;
}
body {
background-image: url(https://wiki.play.eco/cubes.png);
background-color: #FAFAFA;
}
#ooui-php-3 {
position: absolute;
width: 50%;
}
.ace_editor * {
font-family: monospace !important;
}
.mw-changeslist-legend {
position: absolute;
margin: 45px 0px 0px 0px;
}
/* Banner */
.headbanner span img {
width: 100%;
height: auto;
}
/* Table of Contents */
.toc {
border: 5px solid #A9A9A9;
padding: 10px;
float: right;
margin: 0px 30px 30px 30px;
width: 300px;
clear: right;
}