Browse code

Created repository.

DoubleBastionAdmin authored on 26/01/2022 20:32:42
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,81 @@
1
+/**
2
+ *  Copyright (C) 2021  Double Bastion LLC
3
+ *
4
+ *  This file is part of Roundpin, which is licensed under the
5
+ *  GNU Affero General Public License Version 3.0. The license terms
6
+ *  are detailed in the "LICENSE.txt" file located in the root directory.
7
+ *
8
+ *  The "Inter" font is licensed under the SIL Open Font License,
9
+ *  Version 1.1. (available at: https://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web). 
10
+ *  The copyright notice for the "Inter" font follows:
11
+ *
12
+ *  Copyright (c) 2016-2020 The Inter Project Authors.
13
+ *  "Inter" is trademark of Rasmus Andersson.
14
+ *  https://github.com/rsms/inter
15
+ *
16
+ */
17
+
18
+/* Latin */
19
+@font-face {
20
+    font-family: 'Inter';
21
+    src: url('../fonts/inter/Inter-Bold.woff2') format('woff2'),
22
+         url('../fonts/inter/Inter-Bold.woff') format('woff');
23
+    font-weight: 700;
24
+    font-style: normal;
25
+}
26
+
27
+@font-face {
28
+    font-family: 'Inter';
29
+    src: url('../fonts/inter/Inter-BoldItalic.woff2') format('woff2'),
30
+         url('../fonts/inter/Inter-BoldItalic.woff') format('woff');
31
+    font-weight: 700;
32
+    font-style: italic;
33
+}
34
+
35
+@font-face {
36
+    font-family: 'Inter';
37
+    src: url('../fonts/inter/Inter-MediumItalic.woff2') format('woff2'),
38
+         url('../fonts/inter/Inter-MediumItalic.woff') format('woff');
39
+    font-weight: 500;
40
+    font-style: italic;
41
+}
42
+
43
+@font-face {
44
+    font-family: 'Inter';
45
+    src: url('../fonts/inter/Inter-SemiBold.woff2') format('woff2'),
46
+         url('../fonts/inter/Inter-SemiBold.woff') format('woff');
47
+    font-weight: 600;
48
+    font-style: normal;
49
+}
50
+
51
+@font-face {
52
+    font-family: 'Inter';
53
+    src: url('../fonts/inter/Inter-Regular.woff2') format('woff2'),
54
+         url('../fonts/inter/Inter-Regular.woff') format('woff');
55
+    font-weight: 400;
56
+    font-style: normal;
57
+}
58
+
59
+@font-face {
60
+    font-family: 'Inter';
61
+    src: url('../fonts/inter/Inter-SemiBoldItalic.woff2') format('woff2'),
62
+         url('../fonts/inter/Inter-SemiBoldItalic.woff') format('woff');
63
+    font-weight: 600;
64
+    font-style: italic;
65
+}
66
+
67
+@font-face {
68
+    font-family: 'Inter';
69
+    src: url('../fonts/inter/Inter-Italic.woff2') format('woff2'),
70
+         url('../fonts/inter/Inter-Italic.woff') format('woff');
71
+    font-weight: 400;
72
+    font-style: italic;
73
+}
74
+
75
+@font-face {
76
+    font-family: 'Inter';
77
+    src: url('../fonts/inter/Inter-Medium.woff2') format('woff2'),
78
+         url('../fonts/inter/Inter-Medium.woff') format('woff');
79
+    font-weight: 500;
80
+    font-style: normal;
81
+}