-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathname.css
202 lines (183 loc) · 4.86 KB
/
name.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
@keyframes background-pan {
from {
background-position: 0% center;
}
to {
background-position: -200% center;
}
}
@keyframes scale {
from,
to {
transform: scale(0);
}
50% {
transform: scale(1);
}
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(180deg);
}
}
h3 {
font-size: clamp(2em, 2vw, 4em);
font-weight: 700;
}
h3>.magic {
display: inline-block;
position: relative;
}
h3>.magic>.magic-star {
--size: clamp(20px, 1.5vw, 30px);
animation: scale 700ms ease forwards;
display: block;
height: var(--size);
left: var(--star-left);
position: absolute;
top: var(--star-top);
width: var(--size);
}
h3>.magic>.magic-star>svg {
animation: rotate 1000ms linear infinite;
display: block;
opacity: 1;
}
h3>.magic>.magic-star>svg>path {
fill: var(--violet);
}
h3>.magic>.magic-text {
animation: background-pan 2s linear infinite;
background: linear-gradient( to right, var(--purple), var(--violet), var(--pink), var(--purple));
background-size: 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
white-space: nowrap;
}
/* -- YouTube Link Styles -- */
/*
#source-link {
top: 60px;
}
#source-link>i {
color: rgb(94, 106, 210);
}
#yt-link {
top: 10px;
}
#yt-link>i {
color: rgb(239, 83, 80);
}
.meta-link {
align-items: center;
backdrop-filter: blur(3px);
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 6px;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
cursor: pointer;
display: inline-flex;
gap: 5px;
left: 10px;
padding: 10px 20px;
position: fixed;
text-decoration: none;
transition: background-color 600ms, border-color 600ms;
z-index: 10000;
}
.meta-link:hover {
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.meta-link>i,
.meta-link>span {
height: 20px;
line-height: 20px;
}
.meta-link>span {
color: white;
font-family: "Rubik", sans-serif;
transition: color 600ms;
} */
.navigation {
position: relative;
width: 25px;
height: 25px;
border-radius: 10px;
background: transparent;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
transition: 0.5s;
transition-delay: 0.8s;
}
.navigation.active {
width: 200px;
background: var(--bg-black-100);
border: 2px solid var(--skin-color);
box-shadow: 0 0 10px var(--skin-color);
height: 200px;
transition-delay: 0s;
}
.navigation span {
position: absolute;
width: 5px;
height: 5px;
display: flex;
justify-content: center;
align-items: center;
background: var(--skin-color);
border-radius: 50%;
transform: translate(calc(12px * var(--x)), calc(12px * var(--y)));
transition: transform 0.5s, width 0.5s, height 0.5s, background 0.5s;
transition-delay: calc(0.1s * var(--i));
}
.navigation.active span {
width: 45px;
height: 45px;
background: var(--bg-black-900);
box-shadow: 0 0 10px 1px var(--bg-black-50);
transform: translate(calc(60px * var(--x)), calc(60px * var(--y)));
}
.navigation span i {
transition: 0.5s;
font-size: 0 !important;
}
.navigation.active span i {
font-size: 20px !important;
color: var(--skin-color);
}
.navigation.active .whatsapp:hover a i {
color: #25D366;
filter: drop-shadow(0 0 2px #25D366) drop-shadow(0 0 5px #25D366) drop-shadow(0 0 15px #25D366);
}
.navigation.active .instagram:hover a i {
color: #E1306C;
filter: drop-shadow(0 0 2px #E1306C) drop-shadow(0 0 5px #E1306C) drop-shadow(0 0 15px #E1306C);
}
.navigation.active .twitter:hover a i,
.navigation.active .github:hover a i,
.navigation.active .thread:hover a i {
color: var(--text-black-900);
filter: drop-shadow(0 0 2px var(--text-black-900)) drop-shadow(0 0 5px var(--text-black-900)) drop-shadow(0 0 15px var(--text-black-900));
}
.navigation.active .telegram:hover a i {
color: #0088cc;
filter: drop-shadow(0 0 2px #0088cc) drop-shadow(0 0 5px #0088cc) drop-shadow(0 0 15px #0088cc);
}
.navigation.active .facebook:hover a i {
color: #1877F2;
filter: drop-shadow(0 0 2px #1877F2) drop-shadow(0 0 5px #1877F2) drop-shadow(0 0 15px #1877F2);
}
.navigation.active .linkedin:hover a i {
color: #0A66C2;
filter: drop-shadow(0 0 2px #0A66C2) drop-shadow(0 0 5px #0A66C2) drop-shadow(0 0 15px #0A66C2);
}
.navigation.active .snapchat:hover a i {
color: #FFFC00;
filter: drop-shadow(0 0 2px #FFFC00) drop-shadow(0 0 5px #FFFC00) drop-shadow(0 0 15px #FFFC00);
}