MediaWiki:Common.css: Difference between revisions

From Eco - English Wiki
(Created page with "→‎CSS placed here will be applied to all skins: →‎Das folgende CSS wird für alle Benutzeroberflächen geladen.: .infobox, .toc { border: 5px outset #465828; pad...")
 
No edit summary
 
(98 intermediate revisions by 4 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* Custom Font */
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
.infobox, .toc {
 
     border: 5px outset #465828;
/* Framework */
* {
font-family: 'Roboto', sans-serif;
}
 
body {
    background-image: url(https://wiki.play.eco/cubes.png);
    background-color: #FAFAFA;
}
 
.ace_editor * {
    font-family: monospace !important;
}
 
.mw-specialpages-notes {
float: left;
}
 
/* Banner */
.headbanner span img {
width: 100%;
height: auto;
}
 
/* Table of Contents */
.toc {
     border: 5px solid #A9A9A9;
     padding: 10px;
     padding: 10px;
     float: right;
     float: right;
Line 8: Line 34:
     width: 300px;
     width: 300px;
     clear: right;
     clear: right;
}
/* Infoboxes */
.infobox {
    border: 5px solid #7BC2CE;
    padding: 0;
    color: #333333;
    float: right;
    margin: 0px 30px 30px 30px;
    width: 300px;
    clear: right;
}
.tablescroll {
    overflow-x: auto;
}
.ecotable {
    display: table;
    white-space: normal;
    /*font-family: Quicksand, sans-serif;*/
    border: 2px solid var(--border-color, #395684);
    border-radius: 3px;
}
.ecotable th, .ecoheader {
    background-color: var(--table-header-background, #305080);
    color: var(--table-header-color, #FFFCF7);
}
.ecotable tr:nth-child(odd) {
    background-color: var(--table-row-odd, #3956844D);
}
.ecotable tr, .ecobody {
    background-color: var(--table-row-even, #3956841A);
}
}

Latest revision as of 10:55, 20 May 2024

/* Custom Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/* Framework */
* {
	font-family: 'Roboto', sans-serif;
}

body {
    background-image: url(https://wiki.play.eco/cubes.png);
    background-color: #FAFAFA;
}

.ace_editor * {
    font-family: monospace !important;
}

.mw-specialpages-notes {
	float: left;
}

/* 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;
}

/* Infoboxes */
.infobox {
    border: 5px solid #7BC2CE;
    padding: 0;
    color: #333333;
    float: right;
    margin: 0px 30px 30px 30px;
    width: 300px;
    clear: right;
}

.tablescroll {
    overflow-x: auto;
}
.ecotable {
    display: table;
    white-space: normal;
    /*font-family: Quicksand, sans-serif;*/
    border: 2px solid var(--border-color, #395684);
    border-radius: 3px;
}
.ecotable th, .ecoheader {
    background-color: var(--table-header-background, #305080);
    color: var(--table-header-color, #FFFCF7);
}
.ecotable tr:nth-child(odd) {
    background-color: var(--table-row-odd, #3956844D);
}
.ecotable tr, .ecobody {
    background-color: var(--table-row-even, #3956841A);
}