mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-19 19:08:11 +08:00
* Serve Roboto Condensed font from the app directly Fixes https://github.com/chanzuckerberg/cellxgene/issues/344 * Remove second google fonts reference
31 lines
875 B
CSS
31 lines
875 B
CSS
/*
|
|
>>>GLOBAL<<< CSS imports & definitions
|
|
|
|
Do NOT put anything in this file that is not global. We do not perform
|
|
namespace mangling on these definitions. See webpack config for specifics.
|
|
*/
|
|
@import "~@blueprintjs/core/lib/css/blueprint.css";
|
|
@import "~@blueprintjs/icons/lib/css/blueprint-icons.css";
|
|
@import "~@blueprintjs/select/lib/css/blueprint-select.css";
|
|
|
|
@font-face {
|
|
font-family: 'Roboto Condensed';
|
|
font-style: italic;
|
|
src: url('./fonts/RobotoCondensed-Italic.ttf') format('truetype');
|
|
font-weight: 400;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Roboto Condensed';
|
|
font-style: normal;
|
|
src: url('./fonts/RobotoCondensed-Regular.ttf') format('truetype');
|
|
font-weight: 400;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Roboto Condensed';
|
|
font-style: normal;
|
|
src: url('./fonts/RobotoCondensed-Bold.ttf') format('truetype');
|
|
font-weight: 700;
|
|
}
|