MediaWiki:Common.css: Difference between revisions

From Eco - English Wiki
No edit summary
No edit summary
 
(12 intermediate revisions by 2 users not shown)
Line 9: Line 9:
body {
body {
     background-image: url(https://wiki.play.eco/cubes.png);
     background-image: url(https://wiki.play.eco/cubes.png);
     background-color: #F5F5F5;
     background-color: #FAFAFA;
}
}


.ace_editor * {
.ace_editor * {
     font-family: monospace !important;
     font-family: monospace !important;
}
.mw-specialpages-notes {
float: left;
}
}


Line 23: Line 27:


/* Table of Contents */
/* Table of Contents */
/*.toc {
.toc {
     border: 5px solid #A9A9A9;
     border: 5px solid #A9A9A9;
     padding: 10px;
     padding: 10px;
Line 30: Line 34:
     width: 300px;
     width: 300px;
     clear: right;
     clear: right;
}*/
}


/* Infoboxes */
/* Infoboxes */
Line 41: Line 45:
     width: 300px;
     width: 300px;
     clear: right;
     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;
}
}

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