fonts.less 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. // Rubik
  2. @font-face {
  3. font-family: 'Rubik';
  4. src: url('../fonts/rubik-regular.woff') format('woff2'),
  5. url('../fonts/rubik-regular.woff') format('woff');
  6. font-weight: normal;
  7. font-style: normal;
  8. }
  9. @font-face {
  10. font-family: 'Rubik';
  11. src: url('../fonts/rubik-medium.woff') format('woff2'),
  12. url('../fonts/rubik-medium.woff') format('woff');
  13. font-weight: bold;
  14. font-style: normal;
  15. }
  16. // IBM Plex
  17. @font-face {
  18. font-family: 'IBM Plex';
  19. src: url('../fonts/ibm-plex-mono-regular.woff2') format('woff2');
  20. font-weight: normal;
  21. font-style: normal;
  22. }
  23. @font-face {
  24. font-family: 'IBM Plex';
  25. src: url('../fonts/ibm-plex-mono-medium.woff2') format('woff2');
  26. font-weight: bold;
  27. font-style: normal;
  28. }
  29. // Sentry icon font
  30. @font-face {
  31. font-family: 'sentry-simple';
  32. src: url('../fonts/sentry-simple.eot?-iwi56z');
  33. src: url('../fonts/sentry-simple.eot?#iefix-iwi56z') format('embedded-opentype'),
  34. url('../fonts/sentry-simple.woff?-iwi56z') format('woff'),
  35. url('../fonts/sentry-simple.woff2?-lhf5py') format('woff2'),
  36. url('../fonts/sentry-simple.ttf?-iwi56z') format('truetype'),
  37. url('../fonts/sentry-simple.svg?-iwi56z#sentry-simple') format('svg');
  38. font-weight: normal;
  39. font-style: normal;
  40. }
  41. [class^='icon-'],
  42. [class*=' icon-'],
  43. .icon {
  44. font-family: 'sentry-simple';
  45. speak: none;
  46. font-style: normal;
  47. font-weight: normal;
  48. font-variant: normal;
  49. text-transform: none;
  50. line-height: 1;
  51. /* Better Font Rendering =========== */
  52. -webkit-font-smoothing: antialiased;
  53. -moz-osx-font-smoothing: grayscale;
  54. }
  55. .icon-support:before {
  56. content: '\e910';
  57. }
  58. // Font based icons still in uses in Django rendered views.
  59. .icon-sentry-logo:before {
  60. content: '\e61a';
  61. }
  62. .icon-sentry-logo-full:before {
  63. content: '\e623';
  64. }
  65. .icon-exclamation:before {
  66. content: '\e615';
  67. }
  68. .icon-arrow-left:before {
  69. content: '\e60e';
  70. }
  71. .icon-arrow-up:before {
  72. content: '\e610';
  73. }
  74. .icon-arrow-right:before {
  75. content: '\e611';
  76. }
  77. // Used by plugins in getsentry
  78. .icon-checkmark:before {
  79. content: '\e60a';
  80. }
  81. .icon-lock:before {
  82. content: '\e007';
  83. }