mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
117 lines
3.3 KiB
SCSS
117 lines
3.3 KiB
SCSS
// Custom fonts, bundled with app
|
|
|
|
// Material Design Icons
|
|
// https://material.io/resources/icons/
|
|
// https://github.com/google/material-design-icons/tree/master/iconfont
|
|
@font-face {
|
|
font-family: 'Material Icons';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local('Material Icons'), local('MaterialIcons-Regular'),
|
|
url("fonts/MaterialIcons-Regular.woff2") format("woff2");
|
|
}
|
|
|
|
// Google fonts
|
|
// https://fonts.google.com/
|
|
// Download & generate styles:
|
|
// https://google-webfonts-helper.herokuapp.com/fonts/roboto?subsets=latin,cyrillic
|
|
|
|
/* roboto-100 - cyrillic_latin */
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: normal;
|
|
font-weight: 100;
|
|
src: local('Roboto Thin'), local('Roboto-Thin'),
|
|
url('fonts/roboto-v20-cyrillic_latin-100.woff2') format('woff2');
|
|
}
|
|
|
|
/* roboto-100italic - cyrillic_latin */
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: italic;
|
|
font-weight: 100;
|
|
src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'),
|
|
url('fonts/roboto-v20-cyrillic_latin-100italic.woff2') format('woff2');
|
|
}
|
|
|
|
/* roboto-300 - cyrillic_latin */
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: normal;
|
|
font-weight: 300;
|
|
src: local('Roboto Light'), local('Roboto-Light'),
|
|
url('fonts/roboto-v20-cyrillic_latin-300.woff2') format('woff2');
|
|
}
|
|
|
|
/* roboto-300italic - cyrillic_latin */
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: italic;
|
|
font-weight: 300;
|
|
src: local('Roboto Light Italic'), local('Roboto-LightItalic'),
|
|
url('fonts/roboto-v20-cyrillic_latin-300italic.woff2') format('woff2');
|
|
}
|
|
|
|
/* roboto-regular - cyrillic_latin */
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local('Roboto'), local('Roboto-Regular'),
|
|
url('fonts/roboto-v20-cyrillic_latin-regular.woff2') format('woff2');
|
|
}
|
|
|
|
/* roboto-italic - cyrillic_latin */
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
src: local('Roboto Italic'), local('Roboto-Italic'),
|
|
url('fonts/roboto-v20-cyrillic_latin-italic.woff2') format('woff2');
|
|
}
|
|
|
|
/* roboto-500 - cyrillic_latin */
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
src: local('Roboto Medium'), local('Roboto-Medium'),
|
|
url('fonts/roboto-v20-cyrillic_latin-500.woff2') format('woff2');
|
|
}
|
|
|
|
/* roboto-500italic - cyrillic_latin */
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: italic;
|
|
font-weight: 500;
|
|
src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'),
|
|
url('fonts/roboto-v20-cyrillic_latin-500italic.woff2') format('woff2');
|
|
}
|
|
|
|
/* roboto-700 - cyrillic_latin */
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
src: local('Roboto Bold'), local('Roboto-Bold'),
|
|
url('fonts/roboto-v20-cyrillic_latin-700.woff2') format('woff2');
|
|
}
|
|
|
|
/* roboto-700italic - cyrillic_latin */
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: italic;
|
|
font-weight: 700;
|
|
src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'),
|
|
url('fonts/roboto-v20-cyrillic_latin-700italic.woff2') format('woff2');
|
|
}
|
|
|
|
// Patched Roboto Mono font with icons
|
|
// https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/RobotoMono
|
|
|
|
/* RobotoMono Windows Compatible for using in terminal */
|
|
@font-face {
|
|
font-family: 'RobotoMono';
|
|
src: local('RobotoMono'),
|
|
url('fonts/roboto-mono-nerd.ttf') format('truetype');
|
|
} |