MediaWiki:Common.css: Difference between revisions

From Eco - English Wiki
No edit summary
No edit summary
(70 intermediate revisions by 4 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* Custom Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
 
/* Framework */
* {
font-family: 'Roboto', sans-serif;
}
 
body {
body {
background: url(https://wiki.play.eco/cubes.png);
    background-image: url(https://wiki.play.eco/cubes.png);
/*background-color: #F5F5F5;*/
    background-color: #FAFAFA;
}
}


@font-face {
.ace_editor * {
     font-family: "Pathway Gothic One";
     font-family: monospace !important;
    font-style: normal;
    font-weight: 400;
    src: local("Pathway Gothic One"), local("PathwayGothicOne-Regular"),  url("https://fonts.gstatic.com/s/pathwaygothicone/v4/Lqv9ztoTUV8Q0FmQZzPqaL4J1CEROx9mnpUAGKYKzuk.woff2") format("woff2"), url("https://fonts.gstatic.com/s/pathwaygothicone/v4/Lqv9ztoTUV8Q0FmQZzPqaBfSZ9PF2sGs8WIylam6T2Y.woff") format("woff");
}
}


.iconBlue {
.mw-specialpages-notes {
    background-image: url("https://wiki.play.eco/images/9/95/IconFrame.png%22), url("https://wiki.play.eco/images/6/65/IconBackground_Blue.png%22);
float: left;
    background-blend-mode: solid;
    background-repeat: no-repeat;
    background-size: 100%;
}
}


.iconGreen {  
/* Banner */
    background-image: url("https://wiki.play.eco/images/9/95/IconFrame.png%22), url("https://wiki.play.eco/images/3/3e/IconBackground_Green.png%22);
.headbanner span img {
    background-blend-mode: solid;
width: 100%;
    background-repeat: no-repeat;
height: auto;
    background-size: 100%;
}
}


.infobox {
/* Table of Contents */
     border: 5px solid #7BC2CE;
.toc {
     padding: 0;
     border: 5px solid #A9A9A9;
    color: #333333;
     padding: 10px;
     float: right;
     float: right;
     margin: 0px 30px 30px 30px;
     margin: 0px 30px 30px 30px;
Line 36: Line 36:
}
}


.toc {
/* Infoboxes */
     border: 5px solid #A9A9A9;
.infobox {
     padding: 10px;
     border: 5px solid #7BC2CE;
     padding: 0;
    color: #333333;
     float: right;
     float: right;
     margin: 0px 30px 30px 30px;
     margin: 0px 30px 30px 30px;
     width: 300px;
     width: 300px;
     clear: right;
     clear: right;
}
.mw-headline a {
    font-family: "Pathway Gothic One";
    font-size: 15px;
    font-weight: bold;
    padding: 0.25em;
    text-transform: uppercase;
}
}

Revision as of 19:51, 13 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;
}