123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- // Rubik
- @font-face {
- font-family: 'Rubik';
- src: url('../fonts/rubik-regular.woff') format('woff2'),
- url('../fonts/rubik-regular.woff') format('woff');
- font-weight: normal;
- font-style: normal;
- }
- @font-face {
- font-family: 'Rubik';
- src: url('../fonts/rubik-medium.woff') format('woff2'),
- url('../fonts/rubik-medium.woff') format('woff');
- font-weight: bold;
- font-style: normal;
- }
- // Roboto Mono
- @font-face {
- font-family: 'Roboto Mono';
- src: url('../fonts/roboto-mono-regular.woff2') format('woff2'),
- url('../fonts/roboto-mono-regular.woff') format('woff');
- font-weight: 400;
- font-style: normal;
- }
- @font-face {
- font-family: 'Roboto Mono';
- src: url('../fonts/roboto-mono-medium.woff2') format('woff2'),
- url('../fonts/roboto-mono-medium.woff') format('woff');
- font-weight: bold;
- font-style: normal;
- }
- // Sentry icon font
- @font-face {
- font-family: 'sentry-simple';
- src: url('../fonts/sentry-simple.eot?-iwi56z');
- src: url('../fonts/sentry-simple.eot?#iefix-iwi56z') format('embedded-opentype'),
- url('../fonts/sentry-simple.woff?-iwi56z') format('woff'),
- url('../fonts/sentry-simple.woff2?-lhf5py') format('woff2'),
- url('../fonts/sentry-simple.ttf?-iwi56z') format('truetype'),
- url('../fonts/sentry-simple.svg?-iwi56z#sentry-simple') format('svg');
- font-weight: normal;
- font-style: normal;
- }
- [class^='icon-'],
- [class*=' icon-'],
- .icon {
- font-family: 'sentry-simple';
- speak: none;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
- /* Better Font Rendering =========== */
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- // Font based icons still in uses in Django rendered views.
- .icon-sentry-logo:before {
- content: '\e61a';
- }
- .icon-sentry-logo-full:before {
- content: '\e623';
- }
- .icon-exclamation:before {
- content: '\e615';
- }
- .icon-arrow-left:before {
- content: '\e60e';
- }
- .icon-arrow-right:before {
- content: '\e611';
- }
- // Used by plugins in getsentry
- .icon-checkmark:before {
- content: '\e60a';
- }
- .icon-lock:before {
- content: '\e007';
- }
|