MediaWiki:Vector.css: Difference between revisions
Jump to navigation
Jump to search
EMFWIKIAdmin (talk | contribs) No edit summary |
EMFWIKIAdmin (talk | contribs) No edit summary |
||
| Line 4: | Line 4: | ||
font-size: 0.975em; | font-size: 0.975em; | ||
text-align: right; | text-align: right; | ||
direction: rtl; | |||
float: left; | float: left; | ||
} | } | ||
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;
}
.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;
}
}