MediaWiki:Common.css: Difference between revisions
From Eco - English Wiki
Fix for when using the steam overlay browser window - Avaren |
No edit summary |
||
(44 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
/* Custom | /* Custom Font */ | ||
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); | @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); | ||
/* Framework */ | /* Framework */ | ||
Line 10: | Line 9: | ||
body { | body { | ||
background-image: url(https://wiki.play.eco/cubes.png); | background-image: url(https://wiki.play.eco/cubes.png); | ||
background-color: #FAFAFA; | |||
} | |||
.ace_editor * { | |||
font-family: monospace !important; | |||
} | |||
.mw-specialpages-notes { | |||
float: left; | |||
} | } | ||
/* Banner */ | /* Banner */ | ||
.headbanner{ | .headbanner span img { | ||
width: 100%; | width: 100%; | ||
height: auto; | height: auto; | ||
} | } | ||
/* Table of Contents */ | |||
/* Table of Contents*/ | |||
.toc { | .toc { | ||
border: 5px solid #A9A9A9; | border: 5px solid #A9A9A9; | ||
Line 38: | Line 36: | ||
} | } | ||
/* Infoboxes*/ | /* Infoboxes */ | ||
.infobox { | .infobox { | ||
border: 5px solid #7BC2CE; | border: 5px solid #7BC2CE; | ||
Line 49: | Line 47: | ||
} | } | ||
.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); | |||
background- | color: var(--table-header-color, #FFFCF7); | ||
} | } | ||
.ecotable tr:nth-child(odd) { | |||
. | background-color: var(--table-row-odd, #3956844D); | ||
background- | |||
} | } | ||
.ecotable tr, .ecobody { | |||
. | background-color: var(--table-row-even, #3956841A); | ||
background- | |||
} | } | ||
. | .IconFrame { | ||
border: 5px outset #A9A9A9; | |||
background: #DCDCDC; | |||
display:inline-block; | |||
width: auto; | |||
background | padding: 10px; | ||
margin: 10px; | |||
text-align: center; | |||
vertical-align: middle; | |||
} | } | ||
. | .card-horizontal { | ||
display: flex; | |||
flex: 1 1 auto; | |||
} | } | ||
. | .card { | ||
margin-top: 10px; | |||
} | } | ||
. | .card-img-top img { | ||
max-width: 100%; | |||
height: auto; | |||
width: auto\9; | |||
height: | |||
width: | |||
} | } | ||
. | .keyboardkey { | ||
border: 1px solid #aaa; | |||
border-radius: 0.2em; | |||
box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.1); | |||
background-color: #f9f9f9; | |||
background-image: linear-gradient(to bottom, #eee, #f9f9f9, #eee); | |||
color: #000; | |||
padding: 0.1em 0.3em; | |||
font-family: inherit; | |||
font-size: 0.85em; | |||
} | } | ||
.nowrap { | |||
. | white-space: nowrap; | ||
} | } |
Latest revision as of 17:52, 30 December 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);
}
.IconFrame {
border: 5px outset #A9A9A9;
background: #DCDCDC;
display:inline-block;
width: auto;
padding: 10px;
margin: 10px;
text-align: center;
vertical-align: middle;
}
.card-horizontal {
display: flex;
flex: 1 1 auto;
}
.card {
margin-top: 10px;
}
.card-img-top img {
max-width: 100%;
height: auto;
width: auto\9;
}
.keyboardkey {
border: 1px solid #aaa;
border-radius: 0.2em;
box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.1);
background-color: #f9f9f9;
background-image: linear-gradient(to bottom, #eee, #f9f9f9, #eee);
color: #000;
padding: 0.1em 0.3em;
font-family: inherit;
font-size: 0.85em;
}
.nowrap {
white-space: nowrap;
}