MediaWiki:Mobile.css: Difference between revisions
Jump to navigation
Jump to search
Awsome2464 (talk | contribs) (Created page) |
Awsome2464 (talk | contribs) No edit summary |
||
| Line 16: | Line 16: | ||
font-family: 'Fresca' !important; /* DO UNDER NO CIRCUMSTANCES REMOVE "!important;" */ | font-family: 'Fresca' !important; /* DO UNDER NO CIRCUMSTANCES REMOVE "!important;" */ | ||
color: #EF9000; | color: #EF9000; | ||
h1, h2, h3, h4, h5, h6 { | |||
font-family: 'Fresca' !important; /* DO UNDER NO CIRCUMSTANCES REMOVE "!important;" */ | |||
color: #EF9000; | |||
} | |||
body, a, a:hover, a:visited { | |||
font-family: 'Fresca' !important; /* DO UNDER NO CIRCUMSTANCES REMOVE "!important;" */ | |||
color: #EF9000; | |||
} | |||
.mw-body-content a:external { color: #EF9000; } | |||
/* Add custom border to the entire infobox */ | |||
.portable-infobox { | |||
border: 2px solid #ef9000; | |||
border-radius: 8px; /* Rounded corners */ | |||
overflow: hidden; /* Ensures no overflow from child elements */ | |||
background-color: #291f1f; | |||
} | |||
/* Fills out the lines in a group inside of an infobox */ | |||
.pi-smart-group .pi-smart-data-value, .pi-smart-group h3.pi-smart-data-label{ | |||
margin: 0; | |||
} | |||
.pi-title { | |||
font-size: 2em; | |||
text-align: center; | |||
} | |||
.pi-media-collection-tabs { | |||
color: #ef9000; | |||
} | |||
/* Removes the border from images in a gallery */ | |||
.wikia-gallery-item .thumb .gallery-image-wrapper { | |||
border-style: none; | |||
} | |||
Revision as of 20:25, 6 April 2026
/* All CSS here will be loaded for users of the mobile site */
@import "/load.php?mode=articles&articles=u:dev:MediaWiki:SpoilerTags.css&only=styles";
@import url('https://fonts.googleapis.com/css2?family=Fresca&display=swap');
/* Article content across whole site */
#content {
background-color: #453534;
color: #ffffff;
font-size: 20px;
margin-bottom: 5em;}
#content ul {list-style: outside;}
#content a.external {
font-family: 'Fresca' !important; /* DO UNDER NO CIRCUMSTANCES REMOVE "!important;" */
color: #EF9000;
h1, h2, h3, h4, h5, h6 {
font-family: 'Fresca' !important; /* DO UNDER NO CIRCUMSTANCES REMOVE "!important;" */
color: #EF9000;
}
body, a, a:hover, a:visited {
font-family: 'Fresca' !important; /* DO UNDER NO CIRCUMSTANCES REMOVE "!important;" */
color: #EF9000;
}
.mw-body-content a:external { color: #EF9000; }
/* Add custom border to the entire infobox */
.portable-infobox {
border: 2px solid #ef9000;
border-radius: 8px; /* Rounded corners */
overflow: hidden; /* Ensures no overflow from child elements */
background-color: #291f1f;
}
/* Fills out the lines in a group inside of an infobox */
.pi-smart-group .pi-smart-data-value, .pi-smart-group h3.pi-smart-data-label{
margin: 0;
}
.pi-title {
font-size: 2em;
text-align: center;
}
.pi-media-collection-tabs {
color: #ef9000;
}
/* Removes the border from images in a gallery */
.wikia-gallery-item .thumb .gallery-image-wrapper {
border-style: none;
}