41 lines
847 B
CSS
41 lines
847 B
CSS
|
/*
|
||
|
* Pokémon styles
|
||
|
*
|
||
|
* This goes combined with the basicimproved base stylesheet.
|
||
|
*
|
||
|
* */
|
||
|
|
||
|
|
||
|
/*
|
||
|
* Context-specific font families.
|
||
|
* These need to be installed by the client to work on AO3 and other platforms, otherwise they fallback to the generics added here (usually 'fantasy')*/
|
||
|
|
||
|
#workskin .font.Pokemon {
|
||
|
font-family: 'Pokemon Fire Red Regular', 'Pokemon', fantasy;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Unown from: https://www.fontspace.com/unown-font-f44872 (Freeware license)
|
||
|
* */
|
||
|
#workskin .font.Unown {
|
||
|
font-family: 'Unown', fantasy;
|
||
|
}
|
||
|
|
||
|
#workskin .pokemon.msgbox {
|
||
|
margin: 0 16%;
|
||
|
min-width: 50%;
|
||
|
padding: 4pt;
|
||
|
background-color: #eee;
|
||
|
border: 4pt double #444;
|
||
|
}
|
||
|
|
||
|
#workskin .pokemon.msgbox p {
|
||
|
width: 100%;
|
||
|
font-family: "Pokemon Fire Red", "Pokemon", monospace;
|
||
|
color: #444;
|
||
|
}
|
||
|
|
||
|
#workskin .pokemon.msgbox .p:last-child::after {
|
||
|
content: '▼';
|
||
|
}
|