mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-07 16:52:10 +00:00
* move mgmt pkg * begin package restructure * rename auth package to authz * begin start api * move auth * move admin * fix merge * configs and interceptors * interceptor * revert generate-grpc.sh * some cleanups * console * move console * fix tests and merging * js linting * merge * merging and configs * change k8s base to current ports * fixes * cleanup * regenerate proto * remove unnecessary whitespace * missing param * go mod tidy * fix merging * move login pkg * cleanup * move api pkgs again * fix pkg naming * fix generate-static.sh for login * update workflow * fixes * logging * remove duplicate * comment for optional gateway interfaces * regenerate protos * fix proto imports for grpc web * protos * grpc web generate * grpc web generate * fix changes * add translation interceptor * fix merging * regenerate mgmt proto
85 lines
2.1 KiB
SCSS
85 lines
2.1 KiB
SCSS
//Aileron
|
|
@font-face {
|
|
font-family: Aileron;
|
|
src: url(../../../fonts/ailerons/ailerons.otf ) format('opentype');
|
|
}
|
|
|
|
//Lato
|
|
@font-face {
|
|
font-family: Lato;
|
|
src: url(../../../fonts/lato/Lato-Thin.ttf ) format('truetype');
|
|
font-style: normal;
|
|
font-weight: 100;
|
|
}
|
|
@font-face {
|
|
font-family: Lato;
|
|
src: url(../../../fonts/lato/Lato-ThinItalic.ttf ) format('truetype');
|
|
font-style: italic;
|
|
font-weight: 100;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Lato;
|
|
src: url(../../../fonts/lato/Lato-Light.ttf ) format('truetype');
|
|
font-style: normal;
|
|
font-weight: 200;
|
|
}
|
|
@font-face {
|
|
font-family: Lato;
|
|
src: url(../../../fonts/lato/Lato-LightItalic.ttf ) format('truetype');
|
|
font-style: italic;
|
|
font-weight: 200;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Lato;
|
|
src: url(../../../fonts/lato/Lato-Regular.ttf ) format('truetype');
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
}
|
|
@font-face {
|
|
font-family: Lato;
|
|
src: url(../../../fonts/lato/Lato-Italic.ttf ) format('truetype');
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Lato;
|
|
src: url(../../../fonts/lato/Lato-Bold.ttf ) format('truetype');
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
}
|
|
@font-face {
|
|
font-family: Lato;
|
|
src: url(../../../fonts/lato/Lato-BoldItalic.ttf ) format('truetype');
|
|
font-style: italic;
|
|
font-weight: 700;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Lato;
|
|
src: url(../../../fonts/lato/Lato-Black.ttf ) format('truetype');
|
|
font-style: normal;
|
|
font-weight: 800;
|
|
}
|
|
@font-face {
|
|
font-family: Lato;
|
|
src: url(../../../fonts/lato/Lato-BlackItalic.ttf ) format('truetype');
|
|
font-style: italic;
|
|
font-weight: 800;
|
|
}
|
|
|
|
//Material Icons
|
|
@font-face {
|
|
font-family: 'Material Icons';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url(../../../fonts/material/MaterialIcons-Regular.eot); /* For IE6-8 */
|
|
src: local('Material Icons'),
|
|
local('MaterialIcons-Regular'),
|
|
url(../../../fonts/material/MaterialIcons-Regular.woff2) format('woff2'),
|
|
url(../../../fonts/material/MaterialIcons-Regular.woff) format('woff'),
|
|
url(../../../fonts/material/MaterialIcons-Regular.ttf) format('truetype');
|
|
}
|