MediaWiki:Common.css: Difference between revisions

no edit summary
No edit summary
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 6:
@import url('https://fonts.googleapis.com/css2?family=Acme&family=Balsamiq+Sans&family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
 
 
/* Main Page */
.mp-box {
padding: 10px;
border-radius: 10px;
background-color: white;
width: 100%;
}
 
.mp-sidebar>.mp-box {
width: calc(100% - 20px);
}
 
#mp-1 {
background-color: #2d499b;
}
 
#mp-3, #mp-4, #mp-6, #mp-7 {
width: calc(50% - 20px - 5px);
}
 
#mp-sr-container {
text-align: center;
font-size: 85%;
display: flex;
gap: 2px;
flex-wrap: wrap;
justify-content: center;
max-width: 400px;
margin: 0 auto;
align-content: space-evenly;
height: calc(100% - 40px);
}
 
#mp-sr-container>div {
width: 130px;
}
 
.mp-container {
display: flex;
width: 100%;
gap: 10px;
}
 
.mp-main {
width: 80%;
display: flex;
flex-wrap: wrap;
gap: 10px;
align-content: flex-start;
}
 
.mp-sidebar {
width: 20%;
}
 
 
/* This will trigger when the screen/browser window is 900px wide or less */
@media screen and (max-width: 900px) {
 
 
.mp-container {
flex-wrap: wrap;
}
 
.mp-main, .mp-sidebar, #mp-3, #mp-4, #mp-6, #mp-7 {
width: 100%;
}
 
 
}