Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
| Line 6: | Line 6: | ||
} | } | ||
body.page-Main_Page h1.firstHeading | body.page-Main_Page h1.firstHeading { | ||
display:none; | display:none; | ||
} | } | ||
| Line 24: | Line 23: | ||
@media only screen and (max-width: 800px) { | @media only screen and (max-width: 800px) { | ||
#mw-panel { | |||
display: none; | |||
} | |||
.mobile-full { | .mobile-full { | ||
width: 100% !important; | width: 100% !important; | ||
Revision as of 17:58, 28 November 2021
/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
body {
font-family: 'Open Sans';
}
body.page-Main_Page h1.firstHeading {
display:none;
}
#content {
margin: 0 2rem;
}
#mw-content-text {
overflow: hidden;
}
.mw-body {
border-right-width: 1px;
}
@media only screen and (max-width: 800px) {
#mw-panel {
display: none;
}
.mobile-full {
width: 100% !important;
display: block;
}
}