MediaWiki:Common.css
Appearance
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */
/* Link to Tailwind CSS via CDN */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
body{
font-size:16px;
}
.infobox {
border: 1px solid #aaa;
background-color: #f9f9f9;
padding: 5px;
float: right;
margin: 0 0 1em 1em;
width: 250px;
font-size: 90%;
line-height: 1.4em;
}
.infobox th {
background-color: #efefef;
text-align: left;
padding: 4px;
}
.infobox td {
padding: 4px;
}
.vector-column-start,
.vector-column-end {
display: none;
}
.mw-page-container-inner,
.mw-content-container main {
display: unset;
margin: 0;
padding: 0;
}
.main-page-layout {
display: flex;
flex-direction: row;
gap: 20px;
}
.main-page-column {
display:flex;
flex-direction: column;
gap:20px;
}
@media screen and (max-width: 767px){
.main-page-layout{
flex-direction:column;
}
}