MediaWiki:Mobile.css: Difference between revisions

From Ekatra Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 21: Line 21:
#pt-preferences, #p-personal {
#pt-preferences, #p-personal {
display: none;
display: none;
}
@media only screen and (max-width: 767px) {
    .pre-content h1,
    .content h1,
    .content h2 {
        display: none;
    }
}
.mw-parser-output a.external {
    background-image: none !important;
}
.external, .mw-parser-output a.external {
    background-image: none !important;
}
p.bookcover-heading {
    font-size: 29px;
    color: #861f23;
}
}

Latest revision as of 17:01, 16 August 2024

/* All CSS here will be loaded for users of the mobile site */
@font-face {
    font-family: "Ekatra";
    src: url("https://wiki.ekatrafoundation.org/fonts/Ekatra-Normal.ttf");
}
@font-face {
    font-family: "Ekatra";
    src: url("https://wiki.ekatrafoundation.org/fonts/Ekatra-Bold.ttf");
    font-weight: bold;
}
@font-face {
    font-family: "Ekatra";
    src: url("https://wiki.ekatrafoundation.org/fonts/Ekatra-Italic.ttf");
    font-style: italic;
}

body {
  font-family: Ekatra;
}

#pt-preferences, #p-personal {
	display: none;
}
@media only screen and (max-width: 767px) {
    .pre-content h1, 
    .content h1, 
    .content h2 {
        display: none;
    }
}
.mw-parser-output a.external {
    background-image: none !important;
}
.external, .mw-parser-output a.external {
    background-image: none !important;
}
p.bookcover-heading {
    font-size: 29px;
    color: #861f23;
}