Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* [[AntiBigText]] - prevent text enlargement on larger screens (1596+ px) */
/* FandomDesktop skin */
@media only screen and (min-width: 1500px) {
body.skin-fandomdesktop .page-content {
font-size: 14px;
}
}
/*
Oasis skin - for reference:
https://github.com/Wikia/app/blob/dev/skins/oasis/css/core/breakpoints-small-medium-typography.scss
https://github.com/Wikia/app/blob/dev/skins/oasis/css/core/breakpoints-large-typography.scss
*/
@media only screen and (min-width: 1596px) {
/* typography */
.WikiaMainContentContainer h1 {
font-size: 28px;
line-height: 28px;
}
.WikiaMainContentContainer h2 {
font-size: 20px;
line-height: 22px;
}
.WikiaMainContentContainer h3 {
font-size: 17px;
line-height: 22px;
}
.WikiaMainContentContainer h4,
.WikiaRail .rail-module h4,
.WikiaRail .module h4 {
font-size: 15px;
line-height: 22px;
}
.WikiaMainContentContainer .WikiaArticle {
font-size: 14px;
line-height: 22px;
}
/* fixes for other breakpoint-affected styles */
.WikiaPage .WikiaArticle .infobox,
.WikiaPage blockquote {
font-size: inherit;
line-height: inherit;
}
.WikiaArticleComments h1 {
font-size: 22px;
}
.WikiaRail .rail-module h2,
.WikiaRail .module h2 {
line-height: 22px;
}
}