mirror of
https://github.com/chubin/wttr.in
synced 2024-11-15 16:38:06 +00:00
df0b72e178
Some bar drawing gliphs are missing in Android. Adobe's Source Code Pro has them all, so it's one option to fix it on all platforms. If you wish you can also host the font locally. https://stackoverflow.com/questions/51892280/how-do-i-fix-monospace-spaces-not-being-correct-width-in-android-chrome-firefox/52712376
18 lines
548 B
CSS
18 lines
548 B
CSS
body {
|
|
background: black;
|
|
color: #bbbbbb;
|
|
}
|
|
pre {
|
|
/* font-family: source_code_proregular; */
|
|
|
|
/*
|
|
font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace;
|
|
font-size: 70%;
|
|
*/
|
|
|
|
/*font-family: Lucida Console,Lucida Sans Typewriter,monaco,Bitstream Vera Sans Mono,monospace; */
|
|
/*Droid Sans Mono*/
|
|
font-family: "Source Code Pro", "DejaVu Sans Mono", Menlo, "Lucida Sans Typewriter", "Lucida Console", monaco, "Bitstream Vera Sans Mono", monospace;
|
|
/*font-family: bitstream_vera_sans_monoroman;*/
|
|
font-size: 75%;
|
|
}
|