MediaWiki:Vector.css: Difference between revisions

From EM Fields - TAU
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:
   direction: rtl;
   direction: rtl;
   float: left;
   float: left;
}
.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:35, 7 November 2021

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

#bodyContent {
  font-size: 0.975em;
  text-align: right;
  direction: rtl;
  float: left;
}