MediaWiki:Mobile.css: Difference between revisions
mNo edit summary |
(Mediawiki you work in mysterious ways) |
||
Line 1: | Line 1: | ||
/* | /* Elin fonts */ | ||
@font-face { | |||
font-family: "GenEi Antique v5"; | |||
src: | |||
local("GenEi Antique v5"), | |||
url("skins/Elin/GenEiAntiqueNv5-M.ttf"); | |||
} | |||
/* Columns and mobile don't mix */ | |||
@media all and (max-width:480px) { | |||
#main-page-elin>ul { | |||
column-count: 1 !important; | |||
} | |||
} | |||
/* Images viewed in Media Viewer are scaled up and remain pixelated. */ | |||
.mw-mmv-image img { | |||
max-width: 100%; | |||
height: 100%; | |||
object-fit: contain; | |||
image-rendering: pixelated; | |||
} | |||
/* Thumbnails and specified images remain pixelated. */ | |||
.thumb img, | |||
.pixelated img { | |||
image-rendering: pixelated; | |||
} | |||
/* Elin-specific styling */ | |||
.elin-parchment { | |||
border: solid wheat; | |||
border-width: 10px 17px 18px 11px; | |||
border-image: url('/images/9/9b/Elin_UI_Light_Inner.png') 10 17 18 11 fill round; | |||
image-rendering: pixelated; | |||
} |
Revision as of 19:07, 25 December 2024
/* Elin fonts */
@font-face {
font-family: "GenEi Antique v5";
src:
local("GenEi Antique v5"),
url("skins/Elin/GenEiAntiqueNv5-M.ttf");
}
/* Columns and mobile don't mix */
@media all and (max-width:480px) {
#main-page-elin>ul {
column-count: 1 !important;
}
}
/* Images viewed in Media Viewer are scaled up and remain pixelated. */
.mw-mmv-image img {
max-width: 100%;
height: 100%;
object-fit: contain;
image-rendering: pixelated;
}
/* Thumbnails and specified images remain pixelated. */
.thumb img,
.pixelated img {
image-rendering: pixelated;
}
/* Elin-specific styling */
.elin-parchment {
border: solid wheat;
border-width: 10px 17px 18px 11px;
border-image: url('/images/9/9b/Elin_UI_Light_Inner.png') 10 17 18 11 fill round;
image-rendering: pixelated;
}