-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
126 lines (110 loc) · 2.19 KB
/
styles.css
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
@font-face {
font-family: 'Geist Mono';
src: url('GeistMono.ttf') format('truetype');
font-weight: 100 900;
font-style: normal;
font-display: swap;
font-variation-settings: 'wght' 400;
}
@font-face {
font-family: 'Geist';
src: url('Geist.ttf') format('truetype');
font-weight: 100 900;
font-style: normal;
font-display: swap;
font-variation-settings: 'wght' 400;
}
html, body {
font-family: 'Geist Mono', Arial, Helvetica, sans-serif;
color: #ffffff;
margin: 0;
padding: 0;
min-height: 100vh;
overflow-x: hidden;
}
#spline-container {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
pointer-events: none;
}
spline-viewer {
width: 100%;
height: 100%;
}
.content-overlay {
position: relative;
z-index: 1;
min-height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
}
.container-fluid {
flex: 1;
}
h1 {
font-size: 48px;
font-weight: 400;
margin: 10px;
font-family: 'Geist Mono', Arial, Helvetica, sans-serif;
}
.button-container {
padding: 20px;
}
.button {
font-family: 'Geist Mono', Arial, Helvetica, sans-serif;
display: flex;
border: none;
background-color: transparent;
cursor: pointer;
transition: all 0.2s ease-in-out;
color: #ffffff;
text-decoration: none;
text-transform: uppercase;
align-items: center;
gap: 1rem;
width: 100%;
font-size: 12px;
}
.icon {
width: 50px;
height: 50px;
transition: transform 0.2s ease-in-out;
}
.button:hover .icon {
transform: scale(1.1);
}
#title {
color: #ffffff;
text-align: left;
font-family: 'Geist Mono', Arial, Helvetica, sans-serif;
}
footer {
text-align: center;
padding: 20px;
color: #ffffff;
margin-top: auto;
}
@media (min-width: 481px) and (max-width: 960px) {
.col-md-2-4 {
flex: 0 0 20%;
max-width: 20%;
}
.button {
gap: 0.5rem;
}
}
@media (min-width: 961px) {
.custom-col {
flex: 0 0 10%;
max-width: 10%;
}
.button {
gap: 0.25rem;
}
}
/* Bootstrap responsive breakpoints are handled by the grid classes */