MediaWiki:Timeless.css: Difference between revisions

From IdleOn MMO Wiki
imported>Blackwolfe
No edit summary
imported>Blackwolfe
No edit summary
Line 65: Line 65:
{
{
color:red;
color:red;
}
.CodeMirror pre.CodeMirror-line {
    font-size: 13px;
    line-height: 17px;
}
.mw-body .mw-parser-output table a > img, .mw-body .mw-parser-output table .floatnone > img {
    height: auto !important;
    max-width: 100% !important;
}
}

Revision as of 22:43, 12 June 2021

/* All CSS here will be loaded for users of the Timeless skin */
/*Left Sidebar*/
#mw-site-navigation .sidebar-chunk {
	color:black;
	background: rgba(209,209,209,0.8);
	border:1;
	border-color:black;
	border-radius: 6px;
}

/*Main Content*/
#mw-content {
	background: rgba(209,209,209,1);
	border: 1;
	border-color:black;
	-webkit-border-bottom-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-moz-border-radius-bottomright: 6px;
	-moz-border-radius-bottomleft: 6px;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
}
/*Right sidebar*/
#mw-related-navigation .sidebar-chunk {
	color:black;
	background: rgba(209,209,209,0.8);
	border:1;
	border-color:black;
	color:white;
	border-radius: 6px;
}

/* Logo image border */
#p-logo {
    background: rgba(209,209,209,0.8);
	border:1;
	border-color:black;
	color:white;
	border-radius: 6px;
}

.wikitable a{
	color:#1645C5;
}

/* Background Image */
#mw-content-container {
    background:  url('https://static.miraheze.org/idleonwiki/9/9f/Background_Beach.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/*Editor*/
.oo-ui-labelElement-label {
	color: Black;
}

.label{
	color:black;
}

.codeEditor-status-worker
{
	color:red;
}

.CodeMirror pre.CodeMirror-line {
    font-size: 13px;
    line-height: 17px;
}

.mw-body .mw-parser-output table a > img, .mw-body .mw-parser-output table .floatnone > img {
    height: auto !important;
    max-width: 100% !important;
}