mirror of
https://github.com/zen-browser/www.git
synced 2025-07-10 02:05:31 +02:00
Moved some components rendering to server
This commit is contained in:
parent
a2a4396e81
commit
44e6645d73
7 changed files with 201 additions and 211 deletions
24
src/components/cool-header-text/styles.module.css
Normal file
24
src/components/cool-header-text/styles.module.css
Normal file
|
@ -0,0 +1,24 @@
|
|||
@keyframes hueShift {
|
||||
0% {
|
||||
filter: hue-rotate(0deg);
|
||||
}
|
||||
50% {
|
||||
filter: hue-rotate(170deg);
|
||||
}
|
||||
100% {
|
||||
filter: hue-rotate(0deg);
|
||||
}
|
||||
}
|
||||
|
||||
.title {
|
||||
background-clip: text;
|
||||
background-image: linear-gradient(90deg, #0077e7, #01d8d1);
|
||||
-webkit-background-clip: text;
|
||||
color: transparent;
|
||||
filter: hue-rotate(0deg);
|
||||
animation: hueShift 10s infinite linear 1s;
|
||||
padding-bottom: 8px;
|
||||
user-select: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue