Merge branch 'main' into feature/film-timeline
This commit is contained in:
commit
cc365baf88
6 changed files with 61 additions and 54 deletions
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
.topnav {
|
||||
background-color: #333;
|
||||
background-color: #333e;
|
||||
position: relative;
|
||||
height: 68px;
|
||||
padding: var(--spacing-2);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
|
||||
:root {
|
||||
--animated-title-color-1: #6666ff;
|
||||
--animated-title-color-2: #0099ff;
|
||||
--animated-title-color-3: #ffff00;
|
||||
--animated-title-color-4: #ff3399;
|
||||
}
|
||||
@keyframes animated_title_animation {
|
||||
0%,100% {
|
||||
background-position: 0 0;
|
||||
|
|
@ -12,7 +17,8 @@
|
|||
.animated-title {
|
||||
.text {
|
||||
//background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
|
||||
background: linear-gradient(to right, var(--bg-color-1), var(--bg-color-2) , var(--bg-color-3), var(--bg-color-4));
|
||||
background: linear-gradient(to right, var(--animated-title-color-1), var(--animated-title-color-2) , var(--animated-title-color-3), var(--animated-title-color-4));
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
color: transparent;
|
||||
animation: animated_title_animation 60s ease-in-out infinite;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue