Spaces:
Build error
Build error
Matyáš Boháček
commited on
Commit
•
7c35b16
1
Parent(s):
ada447d
Move styles to a separate file
Browse files- styles.css +104 -0
styles.css
ADDED
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@font-face {
|
2 |
+
font-family: Graphik;
|
3 |
+
font-weight: regular;
|
4 |
+
src: url("https://www.signlanguagerecognition.com/supplementary/GraphikRegular.otf") format("opentype");
|
5 |
+
}
|
6 |
+
|
7 |
+
@font-face {
|
8 |
+
font-family: Graphik;
|
9 |
+
font-weight: bold;
|
10 |
+
src: url("https://www.signlanguagerecognition.com/supplementary/GraphikBold.otf") format("opentype");
|
11 |
+
}
|
12 |
+
|
13 |
+
@font-face {
|
14 |
+
font-family: MonumentExpanded;
|
15 |
+
font-weight: regular;
|
16 |
+
src: url("https://www.signlanguagerecognition.com/supplementary/MonumentExtended-Regular.otf") format("opentype");
|
17 |
+
}
|
18 |
+
|
19 |
+
@font-face {
|
20 |
+
font-family: MonumentExpanded;
|
21 |
+
font-weight: bold;
|
22 |
+
src: url("https://www.signlanguagerecognition.com/supplementary/MonumentExtended-Ultrabold.otf") format("opentype");
|
23 |
+
}
|
24 |
+
|
25 |
+
html {
|
26 |
+
font-family: "Graphik";
|
27 |
+
}
|
28 |
+
|
29 |
+
.text-gray-500 {
|
30 |
+
font-family: "Graphik";
|
31 |
+
}
|
32 |
+
|
33 |
+
p {
|
34 |
+
font-family: "Graphik";
|
35 |
+
}
|
36 |
+
|
37 |
+
.leading-snug, summary, .gr-button, .gr-sample-dropdown, .p-2, .flex-col{
|
38 |
+
font-family: "Graphik";
|
39 |
+
}
|
40 |
+
|
41 |
+
.output-class {
|
42 |
+
font-family: "MonumentExpanded";
|
43 |
+
}
|
44 |
+
|
45 |
+
h1 {
|
46 |
+
font-family: "MonumentExpanded";
|
47 |
+
}
|
48 |
+
|
49 |
+
#12 {
|
50 |
+
- background-image: linear-gradient(to left, #61D836, #6CB346) !important;
|
51 |
+
background-color: #61D836 !important;
|
52 |
+
}
|
53 |
+
|
54 |
+
#12:hover {
|
55 |
+
- background-image: linear-gradient(to left, #61D836, #6CB346) !important;
|
56 |
+
background-color: #6CB346 !important;
|
57 |
+
border: 0 !important;
|
58 |
+
border-color: 0 !important;
|
59 |
+
}
|
60 |
+
|
61 |
+
.dark .gr-button-primary {
|
62 |
+
--tw-gradient-from: #61D836;
|
63 |
+
--tw-gradient-to: #6CB346;
|
64 |
+
border: 0 !important;
|
65 |
+
border-color: 0 !important;
|
66 |
+
}
|
67 |
+
|
68 |
+
.dark .gr-button-primary:hover {
|
69 |
+
--tw-gradient-from: #64A642;
|
70 |
+
--tw-gradient-to: #58933B;
|
71 |
+
border: 0 !important;
|
72 |
+
border-color: 0 !important;
|
73 |
+
}
|
74 |
+
|
75 |
+
.gr-prose li {
|
76 |
+
margin-top: 0 !important;
|
77 |
+
margin-bottom: 0 !important;
|
78 |
+
}
|
79 |
+
|
80 |
+
.gr-prose ol ol, .gr-prose ol ul, .gr-prose ul ol, .gr-prose ul ul {
|
81 |
+
margin-top: 0 !important;
|
82 |
+
margin-bottom: 0 !important;
|
83 |
+
}
|
84 |
+
|
85 |
+
.gr-prose h1 {
|
86 |
+
font-size: 1.75em !important;
|
87 |
+
text-align: left !important;
|
88 |
+
}
|
89 |
+
|
90 |
+
.unselectable {
|
91 |
+
-webkit-user-select: none;
|
92 |
+
-moz-user-select: none;
|
93 |
+
-ms-user-select: none;
|
94 |
+
user-select: none;
|
95 |
+
}
|
96 |
+
|
97 |
+
footer {
|
98 |
+
opacity: 0 !important;
|
99 |
+
alpha: 0 !important;
|
100 |
+
}
|
101 |
+
|
102 |
+
#component-15 {
|
103 |
+
width: 50% !important;
|
104 |
+
}
|