Advertising:

MediaWiki:Timeless.css: Difference between revisions

From MS4X Wiki
No edit summary
No edit summary
Line 2: Line 2:


/* Color bars */
/* Color bars */
 
@media screen and (min-width: 851px) {
.color-bar {
width: 100%;
}
 
.color-left {
.color-left {
height: @color-height;
height: @color-height;
Line 22: Line 18:
}
}


.color-middle-container {
max-width: @content-width;
margin: 0 auto -@color-height;
position: relative;
}


.color-middle {
.color-middle {
Line 33: Line 24:
margin-left: @column-left-size + 1em;
margin-left: @column-left-size + 1em;
margin-right: @column-right-size + 1em;
margin-right: @column-right-size + 1em;
}
}
}

Revision as of 14:01, 7 July 2021

/* CSS placed here will affect users of the Timeless skin */

/* Color bars */
@media screen and (min-width: 851px) {
.color-left {
	height: @color-height;
	background: @blue-dark;
	width: 50%;
	float: left;
}

.color-right {
	display: inline-block;
	height: @color-height;
	background: @blue-dark;
	width: 50%;
	float: right;
}


.color-middle {
	height: @color-height;
	background: @blue-dark;
	margin-left: @column-left-size + 1em;
	margin-right: @column-right-size + 1em;
}
}