MediaWiki:Mobile.css: Difference between revisions

From Looney Pyramid Games Wiki
Content added Content deleted
(Temporarily adding remote copy of PyramidLove TTF font to test on IOS mobile view.)
(Adding Cards and Dice font functionality for mobile users)
Line 9: Line 9:
.classname {
.classname {
font-family: 'Pyramid Love';
font-family: 'Pyramid Love';
}


/*Font for Cards and Dice symbols in diagrams */
@font-face {
font-family: 'Cards-and-Dice-2024';
src: url('https://static.miraheze.org/looneypyramidswiki/b/bd/Cards-and-Dice-2024.woff') format('woff');
}

.classname {
font-family: 'Cards-and-Dice-2024';
}
}

Revision as of 12:30, 20 April 2024

/* CSS placed here will affect users of the mobile site */
/* Font for pyramid diagrams */
@font-face {
  font-family: 'Pyramid Love';
  src:  url('https://static.miraheze.org/looneypyramidswiki/e/e4/Pyramid-Love-3.1.woff') format('woff'),
	    url('https://seagullincident.com/pyramidlove/demo/fonts/Pyramid-Love.ttf') format('truetype');
}

.classname {
    font-family: 'Pyramid Love';
}


/*Font for Cards and Dice symbols in diagrams */
@font-face {
  font-family: 'Cards-and-Dice-2024';
  src:  url('https://static.miraheze.org/looneypyramidswiki/b/bd/Cards-and-Dice-2024.woff') format('woff');
}

.classname {
    font-family: 'Cards-and-Dice-2024';
}