MediaWiki:Common.css: Difference between revisions

From Trollpasta Wiki
Jump to navigationJump to search
Content added Content deleted
m (testing)
No edit summary
 
(37 intermediate revisions by 4 users not shown)
Line 1: Line 1:
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&display=swap');
/* CSS placed here will be applied to all skins */
@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');


body { color: #000000; font-size: 12px; font-family: "Arial"; }


/* Main Page */
a:visited { color: #8D1CDB !IMPORTANT; }
.mp-box {
padding: 10px;
border-radius: 10px;
background-color: white;
width: 100%;
}


.mp-sidebar>.mp-box {
a:link { color: #3222E9 !IMPORTANT; }
width: calc(100% - 20px);
}


#mp-1 {
a.new:link { color: #F25500 !IMPORTANT; }
background-color: #2d499b;
}


#mp-3, #mp-4, #mp-6, #mp-7 {
a.new:visited { color: #3D69C4 !IMPORTANT; }
width: calc(50% - 20px - 5px);
}


#mp-sr-container {
body { background-color: #383838; }
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 {
#globalWrapper { background-color: #383838; }
width: 130px;
}


.mp-container {
#catlinks { background-color: #FFFFFF; }
display: flex;
width: 100%;
gap: 10px;
}


.mp-main {
#p-navigation { background-color: #006EC3; }
width: 80%;
display: flex;
flex-wrap: wrap;
gap: 10px;
align-content: flex-start;
}


.mp-sidebar {
#p-navigation .pBody { background-color: #D8EBFF; }
width: 20%;
}


#p-search { background-color: #006EC3; }


/* This will trigger when the screen/browser window is 900px wide or less */
#p-search .pBody { background-color: #D8EBFF; }
@media screen and (max-width: 900px) {


#p-tb { background-color: #006EC3; }


.mp-container {
#p-tb .pBody { background-color: #D8EBFF; }
flex-wrap: wrap;
}


.mp-main, .mp-sidebar, #mp-3, #mp-4, #mp-6, #mp-7 {
#content { background-color: #D8EBFF; }
width: 100%;
}



#footer { background-color: #FFFFFF!important; }
}

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%;
}


}