fonts.less 2.1 KB

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