MediaWiki:Vector.css: Difference between revisions

From EM Fields - TAU
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
   text-align: right;
   text-align: right;
   float: right;
   float: right;
}
.newfont {
font-family: -apple-system,'BlinkMacSystemFont','Segoe UI','Roboto','Lato','Helvetica','Arial',sans-serif;
}
.desktopmainpagecolumn {
float: right;
width: 48%;
padding: 1%;
}
@media screen and (min-width: 880px) {
.mobilemainpagecolumn {
display: none;
}
}
@media screen and (max-width: 880px) {
.mobilemainpagecolumn {
display: block;
float: right;
width: 100%;
}
.desktopmainpagecolumn {
display: none;
}
}
}

Revision as of 07:31, 7 November 2021

/* All CSS here will be loaded for users of the Vector skin */

#bodyContent {
  font-size: 0.975em;
  text-align: right;
  float: right;
}
.newfont {
	font-family: -apple-system,'BlinkMacSystemFont','Segoe UI','Roboto','Lato','Helvetica','Arial',sans-serif;
}

.desktopmainpagecolumn {
	float: right;
	width: 48%;
	padding: 1%;
}

@media screen and (min-width: 880px) {
.mobilemainpagecolumn {
	display: none;
	}
}

@media screen and (max-width: 880px) {
.mobilemainpagecolumn {
	display: block;
	float: right;
	width: 100%;
	}

.desktopmainpagecolumn {
	display: none;
	}
}