fonts: improve default fonts & font picker

- change default font for colibris and for no-skin
- add roboto and quicksand font files
- simplify font picker: directly use the name of the font, and reduce their
  number
This commit is contained in:
Sebastian Castro 2020-04-09 08:40:05 +02:00 committed by muxator
parent fb5a65c5fc
commit a5164dad43
13 changed files with 56 additions and 135 deletions

View file

@ -17,8 +17,6 @@
font-family: opendyslexic;
src: url("../../../static/font/opendyslexic.otf") format("opentype");
}
/* Roboto Mono */
@font-face {
font-family: "RobotoMono";
src: url("../../../static/font/RobotoMono-Regular.ttf") format("truetype");
@ -31,4 +29,33 @@
font-weight: bold;
font-style: normal;
}
/* End of Roboto Mono */
@font-face {
font-family: "Quicksand";
src: url("../../../static/font/Quicksand-Regular.ttf") format("truetype");
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: "Quicksand";
src: url("../../../static/font/Quicksand-Medium.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Quicksand";
src: url("../../../static/font/Quicksand-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: "Roboto";
src: url("../../../static/font/Roboto-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Roboto";
src: url("../../../static/font/Roboto-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal;
}