forked from Mif2006/Space-Portolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
71 lines (62 loc) · 1.55 KB
/
globals.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
@import url("https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
.cursive {
font-family: "Cedarville Cursive", cursive;
}
.Welcome-text {
background: linear-gradient(
0deg,
rgba(255, 255, 255, 0.4),
rgba(255, 255, 255, 0.4)
),
linear-gradient(90.01deg, #e59cff 0.01%, #ba9cff 50.01%, #9cb2ff 100%);
background-blend-mode: normal, screen;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.Welcome-box {
isolation: isolate;
overflow: hidden;
align-items: center;
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(6px);
border-radius: 32px;
box-shadow: inset 0 -7px 11px #a48fff1f;
display: flex;
position: relative;
width: -moz-max-content;
width: max-content;
transition: 0.45s cubic-bezier(0.6, 0.6, 0, 1) box-shadow;
}
.button-primary {
background: linear-gradient(
180deg,
rgba(60, 8, 126, 0) 0%,
rgba(60, 8, 126, 0.32) 100%
),
rgba(113, 47, 255, 0.12);
box-shadow: inset 0 0 12px #bf97ff3d;
}
.button-primary:hover {
background: linear-gradient(
180deg,
rgba(60, 8, 126, 0) 0%,
rgba(60, 8, 126, 0.42) 100%
),
rgba(113, 47, 255, 0.24);
box-shadow: inset 0 0 12px #bf97ff70;
}
/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hidden {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.scrollbar-hidden::-webkit-scrollbar {
display: none;
}
html {
scroll-behavior: smooth;
}