|
| 1 | +/* |
| 2 | + Licensed to the Apache Software Foundation (ASF) under one |
| 3 | + or more contributor license agreements. See the NOTICE file |
| 4 | + distributed with this work for additional information |
| 5 | + regarding copyright ownership. The ASF licenses this file |
| 6 | + to you under the Apache License, Version 2.0 (the |
| 7 | + "License"); you may not use this file except in compliance |
| 8 | + with the License. You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | + Unless required by applicable law or agreed to in writing, |
| 13 | + software distributed under the License is distributed on an |
| 14 | + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | + KIND, either express or implied. See the License for the |
| 16 | + specific language governing permissions and limitations |
| 17 | + under the License. |
| 18 | +*/ |
| 19 | + |
| 20 | +// Normal Style Font |
| 21 | + |
| 22 | +@font-face { |
| 23 | + font-family: 'Raleway'; |
| 24 | + font-weight: 100; |
| 25 | + font-style: normal; |
| 26 | + src: url(/static/fonts/raleway/Raleway-Thin.ttf) format('truetype'); |
| 27 | +} |
| 28 | + |
| 29 | +@font-face { |
| 30 | + font-family: 'Raleway'; |
| 31 | + font-weight: 200; |
| 32 | + font-style: normal; |
| 33 | + src: url(/static/fonts/raleway/Raleway-ExtraLight.ttf) format('truetype'); |
| 34 | +} |
| 35 | + |
| 36 | +@font-face { |
| 37 | + font-family: 'Raleway'; |
| 38 | + font-weight: 300; |
| 39 | + font-style: normal; |
| 40 | + src: url(/static/fonts/raleway/Raleway-Light.ttf) format('truetype'); |
| 41 | +} |
| 42 | + |
| 43 | +@font-face { |
| 44 | + font-family: 'Raleway'; |
| 45 | + font-weight: 400; |
| 46 | + font-style: normal; |
| 47 | + src: url(/static/fonts/raleway/Raleway-Regular.ttf) format('truetype'); |
| 48 | +} |
| 49 | + |
| 50 | +@font-face { |
| 51 | + font-family: 'Raleway'; |
| 52 | + font-weight: 500; |
| 53 | + font-style: normal; |
| 54 | + src: url(/static/fonts/raleway/Raleway-Medium.ttf) format('truetype'); |
| 55 | +} |
| 56 | + |
| 57 | +@font-face { |
| 58 | + font-family: 'Raleway'; |
| 59 | + font-weight: 600; |
| 60 | + font-style: normal; |
| 61 | + src: url(/static/fonts/raleway/Raleway-SemiBold.ttf) format('truetype'); |
| 62 | +} |
| 63 | + |
| 64 | +@font-face { |
| 65 | + font-family: 'Raleway'; |
| 66 | + font-weight: 700; |
| 67 | + font-style: normal; |
| 68 | + src: url(/static/fonts/raleway/Raleway-Bold.ttf) format('truetype'); |
| 69 | +} |
| 70 | + |
| 71 | +@font-face { |
| 72 | + font-family: 'Raleway'; |
| 73 | + font-weight: 800; |
| 74 | + font-style: normal; |
| 75 | + src: url(/static/fonts/raleway/Raleway-ExtraBold.ttf) format('truetype'); |
| 76 | +} |
| 77 | + |
| 78 | +@font-face { |
| 79 | + font-family: 'Raleway'; |
| 80 | + font-weight: 900; |
| 81 | + font-style: normal; |
| 82 | + src: url(/static/fonts/raleway/Raleway-Black.ttf) format('truetype'); |
| 83 | +} |
| 84 | + |
| 85 | +// Italic Style Font |
| 86 | + |
| 87 | +@font-face { |
| 88 | + font-family: 'Raleway'; |
| 89 | + font-weight: 100; |
| 90 | + font-style: italic; |
| 91 | + src: url(/static/fonts/raleway/Raleway-ThinItalic.ttf) format('truetype'); |
| 92 | +} |
| 93 | + |
| 94 | +@font-face { |
| 95 | + font-family: 'Raleway'; |
| 96 | + font-weight: 200; |
| 97 | + font-style: italic; |
| 98 | + src: url(/static/fonts/raleway/Raleway-ExtraLightItalic.ttf) format('truetype'); |
| 99 | +} |
| 100 | + |
| 101 | +@font-face { |
| 102 | + font-family: 'Raleway'; |
| 103 | + font-weight: 300; |
| 104 | + font-style: italic; |
| 105 | + src: url(/static/fonts/raleway/Raleway-LightItalic.ttf) format('truetype'); |
| 106 | +} |
| 107 | + |
| 108 | +@font-face { |
| 109 | + font-family: 'Raleway'; |
| 110 | + font-weight: 400; |
| 111 | + font-style: italic; |
| 112 | + src: url(/static/fonts/raleway/Raleway-Italic.ttf) format('truetype'); |
| 113 | +} |
| 114 | + |
| 115 | +@font-face { |
| 116 | + font-family: 'Raleway'; |
| 117 | + font-weight: 500; |
| 118 | + font-style: italic; |
| 119 | + src: url(/static/fonts/raleway/Raleway-MediumItalic.ttf) format('truetype'); |
| 120 | +} |
| 121 | + |
| 122 | +@font-face { |
| 123 | + font-family: 'Raleway'; |
| 124 | + font-weight: 600; |
| 125 | + font-style: italic; |
| 126 | + src: url(/static/fonts/raleway/Raleway-SemiBoldItalic.ttf) format('truetype'); |
| 127 | +} |
| 128 | + |
| 129 | +@font-face { |
| 130 | + font-family: 'Raleway'; |
| 131 | + font-weight: 700; |
| 132 | + font-style: italic; |
| 133 | + src: url(/static/fonts/raleway/Raleway-BoldItalic.ttf) format('truetype'); |
| 134 | +} |
| 135 | + |
| 136 | +@font-face { |
| 137 | + font-family: 'Raleway'; |
| 138 | + font-weight: 800; |
| 139 | + font-style: italic; |
| 140 | + src: url(/static/fonts/raleway/Raleway-ExtraBoldItalic.ttf) format('truetype'); |
| 141 | +} |
| 142 | + |
| 143 | +@font-face { |
| 144 | + font-family: 'Raleway'; |
| 145 | + font-weight: 900; |
| 146 | + font-style: italic; |
| 147 | + src: url(/static/fonts/raleway/Raleway-BlackItalic.ttf) format('truetype'); |
| 148 | +} |
0 commit comments