m (Hid main page title and subtitle) |
(Moved styles from main page to here) |
||
Line 13: | Line 13: | ||
body.page-Main_Page.action-submit h1{ | body.page-Main_Page.action-submit h1{ | ||
display: none; | display: none; | ||
} | |||
.home-card { | |||
background: #1F262C; | |||
border-radius:12px; | |||
padding: 10px 15px; | |||
} | |||
.home-card--col2 { | |||
grid-column: span 2; | |||
} | |||
.home-card--row4 { | |||
grid-row: span 4; | |||
} | |||
.home-card-discord { | |||
color: #ffffff; | |||
text-align: center; | |||
background: #5865F2; | |||
border-radius:12px; | |||
} | |||
.home-card-reddit { | |||
color: #ffffff; | |||
text-align: center; | |||
background: #FF4500; | |||
border-radius:12px; | |||
} | |||
.home-card-patreon { | |||
color: #ffffff; | |||
text-align: center; | |||
background: #FF6871; | |||
border-radius:12px; | |||
} | |||
.home-card-kofi { | |||
color: #ffffff; | |||
text-align: center; | |||
background: #52D0FE; | |||
border-radius:12px; | |||
} | |||
.home-social-link { | |||
color: #fff; | |||
font-weight: bold; | |||
width:100%; | |||
height: 100%; | |||
display: flex; | |||
justify-content: center; | |||
align-content: center; | |||
flex-direction: column; | |||
} | } |
Revision as of 17:45, 10 April 2022
/* CSS placed here will be applied to all skins */
.mwe-popups.mwe-popups-is-tall .mwe-popups-extract {
color: black;
}
.mwe-popups.mwe-popups-is-not-tall .mwe-popups-extract {
color: black;
}
body.page-Main_Page.action-view #siteSub,
body.page-Main_Page.action-submit #siteSub,
body.page-Main_Page.action-view h1,
body.page-Main_Page.action-submit h1{
display: none;
}
.home-card {
background: #1F262C;
border-radius:12px;
padding: 10px 15px;
}
.home-card--col2 {
grid-column: span 2;
}
.home-card--row4 {
grid-row: span 4;
}
.home-card-discord {
color: #ffffff;
text-align: center;
background: #5865F2;
border-radius:12px;
}
.home-card-reddit {
color: #ffffff;
text-align: center;
background: #FF4500;
border-radius:12px;
}
.home-card-patreon {
color: #ffffff;
text-align: center;
background: #FF6871;
border-radius:12px;
}
.home-card-kofi {
color: #ffffff;
text-align: center;
background: #52D0FE;
border-radius:12px;
}
.home-social-link {
color: #fff;
font-weight: bold;
width:100%;
height: 100%;
display: flex;
justify-content: center;
align-content: center;
flex-direction: column;
}