-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (52 loc) · 1.23 KB
/
styles.css
File metadata and controls
62 lines (52 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@layer vocs_preflight {
@tailwind base;
@tailwind components;
@tailwind utilities;
}
:root {
--vocs-fontFamily_default: "Inter", sans-serif;
--vocs-color_background: white;
--vocs-fontWeight_semibold: 700;
}
:root.dark {
--vocs-color_background: #232225;
}
.vocs_Heading {
font-family: "Inter", sans-serif !important;
}
.effect-button {
font-size: 20px;
border-radius: 999px;
padding: 10px 25px;
color: white;
border: 1px solid #1c1a1f;
}
.vocs_CodeGroup {
height: 100%;
}
.effect-button--outlined {
color: black;
border: 1px solid #1c1a1f;
}
.effect-button--primary {
background-color: #1c1a1f;
color: white;
border: 1px solid #1c1a1f;
}
.vocs_HomePage_title {
font-family: "Inter", sans-serif !important;
font-weight: 400 !important;
color: #1c1a1f !important;
font-size: 6rem;
}
#splash-container {
background: url("/preview-bg.png") no-repeat center center;
background-size: cover;
height: 100vh;
width: 100vw;
z-index: 0;
opacity: 0.55;
position: absolute;
}