-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
115 lines (96 loc) · 2.43 KB
/
globals.css
File metadata and controls
115 lines (96 loc) · 2.43 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
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
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
color-scheme: dark;
color: #1a1a1a;
}
/* Overwrite dark mode default styling */
input,
textarea {
background-color: white;
}
body {
font-family: "Space Grotesk", serif !important;
background-color: #ffffff;
overflow-x: hidden;
}
.footer-clip-path {
clip-path: polygon(15% 34%, 100% 0%, 100% 100%, 0% 100%);
}
/* Events Page */
.monthly-event {
background: radial-gradient(
138.71% 110.11% at 93.15% -36.58%,
#4255f933 25%,
#0f1319 100%
),
radial-gradient(61.66% 37.6% at 6.63% 95.08%, #4255f922 25%, #0f1319 100%),
rgba(26, 26, 26, 0.43);
box-shadow: 0px 0.5px 16px 0px rgba(200, 200, 255, 0.1);
border: 1px solid #4255f911;
}
/* About Page */
.about-bg {
background: radial-gradient(
138.71% 110.11% at 93.15% -36.58%,
#4255f988 25%,
#0f1319 50%,
#4255f901 100%
),
radial-gradient(61.66% 37.6% at 6.63% 95.08%, #4255f988 25%, #0f1319 100%),
#4255f988;
box-shadow: 0px 0.5px 16px 0px rgba(200, 200, 255, 0.1);
border: 1px solid #242424;
}
/* Landing Page */
.cta-btn:hover {
/* Apply a full (all-around) shadow with #79C7FD */
box-shadow: 0 0 16px 4px rgba(121, 199, 253, 0.7);
}
/* infinite carousel */
.scroller-list {
list-style: none;
flex-shrink: 0;
min-width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
/* Remove animation from here so it only applies when all images are loaded */
}
.scroller-list.animate-scroll {
animation: scroll 24s linear infinite;
}
@keyframes scroll {
to {
transform: translateX(calc(-100% - 16px));
}
}
/* Discord PC */
.pc-stand {
background: linear-gradient(
180deg,
rgba(64, 64, 64, 0.1) 0%,
rgba(64, 64, 64, 0.2) 13.27%,
rgba(64, 64, 64, 0.25) 27.21%,
rgba(64, 64, 64, 0.48) 60.58%,
rgba(64, 64, 64, 0.54) 76.36%,
rgba(64, 64, 64, 0.45) 92.14%
);
}
.pc-base {
background: linear-gradient(
90deg,
rgba(64, 64, 64, 0.6) 0%,
rgba(64, 64, 64, 0.3) 6.5%,
rgba(64, 64, 64, 0.6) 19.18%,
rgba(64, 64, 64, 0.3) 32.93%,
rgba(64, 64, 64, 0.3) 66.46%,
rgba(64, 64, 64, 0.6) 81%,
rgba(64, 64, 64, 0.3) 94%,
rgba(64, 64, 64, 0.6) 100%
);
box-shadow: 0px -7px 2px 0px rgba(0, 0, 0, 0.18);
}