LICENSE.txt
2 years ago
Roboto-Black.ttf
2 years ago
Roboto-BlackItalic.ttf
2 years ago
Roboto-Bold.ttf
2 years ago
Roboto-BoldItalic.ttf
2 years ago
Roboto-Italic.ttf
2 years ago
Roboto-Light.ttf
2 years ago
Roboto-LightItalic.ttf
2 years ago
Roboto-Medium.ttf
2 years ago
Roboto-MediumItalic.ttf
2 years ago
Roboto-Regular.ttf
2 years ago
Roboto-Thin.ttf
2 years ago
Roboto-ThinItalic.ttf
2 years ago
fonts.css
2 years ago
fonts.css
98 lines
| 1 | @font-face { |
| 2 | font-family: Roboto; |
| 3 | font-style: italic; |
| 4 | font-weight: 100; |
| 5 | src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url('./Roboto-ThinItalic.ttf') format('truetype'); |
| 6 | } |
| 7 | |
| 8 | @font-face { |
| 9 | font-family: Roboto; |
| 10 | font-style: italic; |
| 11 | font-weight: 300; |
| 12 | src: local('Roboto Light Italic'), local('Roboto-LightItalic'), |
| 13 | url('./Roboto-LightItalic.ttf') format('truetype'); |
| 14 | } |
| 15 | |
| 16 | @font-face { |
| 17 | font-family: Roboto; |
| 18 | font-style: italic; |
| 19 | font-weight: 400; |
| 20 | src: local('Roboto Italic'), local('Roboto-Italic'), url('./Roboto-Italic.ttf') format('truetype'); |
| 21 | } |
| 22 | |
| 23 | @font-face { |
| 24 | font-family: Roboto; |
| 25 | font-style: italic; |
| 26 | font-weight: 500; |
| 27 | src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), |
| 28 | url('./Roboto-MediumItalic.ttf') format('truetype'); |
| 29 | } |
| 30 | |
| 31 | @font-face { |
| 32 | font-family: Roboto; |
| 33 | font-style: italic; |
| 34 | font-weight: 700; |
| 35 | src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'), url('./Roboto-BoldItalic.ttf') format('truetype'); |
| 36 | } |
| 37 | |
| 38 | @font-face { |
| 39 | font-family: Roboto; |
| 40 | font-style: italic; |
| 41 | font-weight: 900; |
| 42 | src: local('Roboto Black Italic'), local('Roboto-BlackItalic'), |
| 43 | url('./Roboto-BlackItalic.ttf') format('truetype'); |
| 44 | } |
| 45 | |
| 46 | @font-face { |
| 47 | font-family: Roboto; |
| 48 | font-style: normal; |
| 49 | font-weight: 100; |
| 50 | src: local('Roboto Thin'), local('Roboto-Thin'), url('./Roboto-Thin.ttf') format('truetype'); |
| 51 | } |
| 52 | |
| 53 | @font-face { |
| 54 | font-family: Roboto; |
| 55 | font-style: normal; |
| 56 | font-weight: 300; |
| 57 | src: local('Roboto Light'), local('Roboto-Light'), url('./Roboto-Light.ttf') format('truetype'); |
| 58 | } |
| 59 | |
| 60 | @font-face { |
| 61 | font-family: Roboto; |
| 62 | font-style: normal; |
| 63 | font-weight: 400; |
| 64 | src: local('Roboto'), local('Roboto-Regular'), url('./Roboto-Regular.ttf') format('truetype'); |
| 65 | } |
| 66 | |
| 67 | @font-face { |
| 68 | font-family: Roboto; |
| 69 | font-style: normal; |
| 70 | font-weight: 500; |
| 71 | src: local('Roboto Medium'), local('Roboto-Medium'), url('./Roboto-Medium.ttf') format('truetype'); |
| 72 | } |
| 73 | |
| 74 | @font-face { |
| 75 | font-family: Roboto; |
| 76 | font-style: normal; |
| 77 | font-weight: 700; |
| 78 | src: local('Roboto Bold'), local('Roboto-Bold'), url('./Roboto-Bold.ttf') format('truetype'); |
| 79 | } |
| 80 | |
| 81 | @font-face { |
| 82 | font-family: Roboto; |
| 83 | font-style: normal; |
| 84 | font-weight: 900; |
| 85 | src: local('Roboto Black'), local('Roboto-Black'), url('./Roboto-Black.ttf') format('truetype'); |
| 86 | } |
| 87 | |
| 88 | @font-face { |
| 89 | font-family: 'Roboto Light'; |
| 90 | font-style: normal; |
| 91 | font-weight: 300; |
| 92 | src: local('Roboto Light'), local('Roboto-Light'), url('./Roboto-Light.ttf') format('truetype'); |
| 93 | } |
| 94 | |
| 95 | html, body, #root { |
| 96 | height: 100% |
| 97 | } |
| 98 |