MediaWiki:Common.css: Difference between revisions

From Eco - English Wiki
No edit summary
No edit summary
 
(33 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* Custom Font */
/* 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 */
/* Framework */
Line 7: Line 12:
}
}


/* Background Image */
body {
body {
     background-image: url(https://wiki.play.eco/cubes.png);
     background-image: url(https://wiki.play.eco/cubes.png);
     background-color: #FAFAFA;
     background-color: #FAFAFA;
}
#ooui-php-3 {
  position: absolute;
  width: 50%;
}
}


Line 16: Line 27:
}
}


.mw-specialpages-notes {
.mw-changeslist-legend {
float: left;
  position: absolute;
  margin: 45px 0px 0px 0px;
}
}


Line 50: Line 62:
     overflow-x: auto;
     overflow-x: auto;
}
}
.ecotable {
.ecotable {
     display: table;
     display: table;
Line 57: Line 70:
     border-radius: 3px;
     border-radius: 3px;
}
}
.ecotable th, .ecoheader {
.ecotable th, .ecoheader {
     background-color: var(--table-header-background, #305080);
     background-color: var(--table-header-background, #305080);
Line 72: Line 86:
     background: #DCDCDC;
     background: #DCDCDC;
     display:inline-block;
     display:inline-block;
     width: auto;
     /*width: auto;*/
     padding: 5px;
     padding: 5px;
     padding-top: 20px;
     padding-top: 20px;
Line 80: Line 94:
     width: 200px;
     width: 200px;
}
}
/* Recipes Item Icon with count */
.recipeitem {
  position: relative;
width: fit-content;
height: fit-content;
overflow: hidden;
border-width: clamp(3px, 0.05em, 8px);
border-radius: clamp(4px, 0.1em, 16px);
box-shadow:
0 0.04em 0.06em rgba(0,0,0,0.75),
0 0.09em 0.14em rgba(0,0,0,0.45);
margin: 0.1em;
}
.recipeitem.withcount::after {
content: "";
position: absolute;
z-index: 1;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
background: linear-gradient(
315deg,
rgba(0,0,0,0.55) 0%,
rgba(0,0,0,0.4) 28%,
rgba(0,0,0,0.2) 35%,
rgba(0,0,0,0) 42%
);
}
.recipeitemicon {
width: 1em;
height: 1em;
}
.recipeitemicon img {
display: block;
}
.recipeitemcount {
position: absolute;
z-index: 2;
bottom: clamp(4px, 0.1em, 16px);
right: clamp(4px, 0.1em, 16px);
line-height: 1;
color: #fff;
text-shadow: 0 1px 2px rgba(0,0,0,0.85);
font-weight: bold;
font-size: 0.25em;
}
.recipeitem.borderwhite{
background-color: white;
border-color: white;
border-style: solid;
}
.recipeitem.borderyellow {
background-color: yellow;
border-color: yellow;
border-style: solid;
}
.recipeitem.bordergreen {
background-color: lime;
border-color: lime;
border-style: solid;
}
.recipeitemlink {
    position: absolute;
    z-index: 3;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}


.card-horizontal {
.card-horizontal {
Line 93: Line 187:
     max-width: 100%;
     max-width: 100%;
     height: auto;
     height: auto;
     width: auto\9;
     width: auto;
}
}


Line 114: Line 208:
.IconGrid img {
.IconGrid img {
margin-right:10px;
margin-right:10px;
}
/* Gallery Top */
.mw-gallery-slideshow {
    margin: 0;
}
ul.gallery.gallery.gallery.mw-gallery-slideshow {
    margin: 0;
}
/* Recipe table cell vertical align */
.table th, .table td {
    vertical-align: middle;
}
}

Latest revision as of 20:18, 29 March 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;
}

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

/* 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: 5px;
    padding-top: 20px;
    margin: 5px;
    text-align: center;
    vertical-align: middle;
    width: 200px;
}

/* Recipes Item Icon with count */
.recipeitem {
  	position: relative;
	width: fit-content;
	height: fit-content;
	overflow: hidden;
	border-width: clamp(3px, 0.05em, 8px);
	border-radius: clamp(4px, 0.1em, 16px);
	box-shadow:
	0 0.04em 0.06em rgba(0,0,0,0.75),
	0 0.09em 0.14em rgba(0,0,0,0.45);
	margin: 0.1em;
}

.recipeitem.withcount::after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		315deg,
		rgba(0,0,0,0.55) 0%,
		rgba(0,0,0,0.4) 28%,
		rgba(0,0,0,0.2) 35%,
		rgba(0,0,0,0) 42%
	);
}

.recipeitemicon {
	width: 1em;
	height: 1em;
}

.recipeitemicon img {
	display: block;
}

.recipeitemcount {
	position: absolute;
	z-index: 2;
	bottom: clamp(4px, 0.1em, 16px);
	right: clamp(4px, 0.1em, 16px);
	line-height: 1;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,0.85);
	font-weight: bold;
	font-size: 0.25em;
}

.recipeitem.borderwhite{
	background-color: white;
	border-color: white;
	border-style: solid;
}

.recipeitem.borderyellow {
	background-color: yellow;
	border-color: yellow;
	border-style: solid;
}

.recipeitem.bordergreen {
	background-color: lime;
	border-color: lime;
	border-style: solid;
}

.recipeitemlink {
    position: absolute;
    z-index: 3;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}


.card-horizontal {
    display: flex;
    flex: 1 1 auto;
}

.card {
    margin-top: 10px;
}

.card-img-top img {
    max-width: 100%;
    height: auto;
    width: auto;
}

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

.IconGrid img {
	margin-right:10px;
}

/* Gallery Top */
.mw-gallery-slideshow {
    margin: 0; 
}

ul.gallery.gallery.gallery.mw-gallery-slideshow {
    margin: 0;
}


/* Recipe table cell vertical align */
.table th, .table td {
    vertical-align: middle;
}