MediaWiki:Common.css: Difference between revisions

From Trollpasta Wiki
Jump to navigationJump to search
Content added Content deleted
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 25: Line 25:


#mp-3, #mp-4, #mp-6, #mp-7 {
#mp-3, #mp-4, #mp-6, #mp-7 {
width: calc(50% - 20px - 0.5em);
width: calc(50% - 20px - 5px);
}
}


Line 38: Line 38:
margin: 0 auto;
margin: 0 auto;
align-content: space-evenly;
align-content: space-evenly;
height: 100%;
height: calc(100% - 40px);
}
}


Line 48: Line 48:
display: flex;
display: flex;
width: 100%;
width: 100%;
gap: 1em;
gap: 10px;
}
}


Line 55: Line 55:
display: flex;
display: flex;
flex-wrap: wrap;
flex-wrap: wrap;
gap: 1em;
gap: 10px;
align-content: flex-start;
align-content: flex-start;
}
}

Latest revision as of 15:13, 29 October 2022

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans&family=Bebas+Neue&display=swap');
@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%;
}


}