Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
stylesheet:style_useruser [2025/01/25 16:07] – user478 | stylesheet:style_useruser [2025/01/25 16:56] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
%% | %% | ||
- | body{ | + | *{ |
- | animation: | + | animation: |
+ | animation: gradient-anim2 28s linear forwards; | ||
+ | animation: gradient-anim3 30s linear forwards; | ||
} | } | ||
.right-column{ | .right-column{ | ||
- | animation: blur-anim | + | animation: blur-anim |
font-size: 1.45rem; | font-size: 1.45rem; | ||
font-weight: | font-weight: | ||
font-family: | font-family: | ||
line-height: | line-height: | ||
- | display: | + | display: |
letter-spacing: | letter-spacing: | ||
-webkit-transform: | -webkit-transform: | ||
Line 31: | Line 33: | ||
} | } | ||
- | head { | + | |
+ | @keyframes gradient-anim2{ | ||
+ | 0% { background: transparent; | ||
+ | 100% { background: linear-gradient(to white, yellow, blue); | ||
+ | mix-blend-mode: | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | @keyframes gradient-anim3{ | ||
+ | 0% { background: transparent; | ||
+ | 100% { background: linear-gradient(to right, red, blue); | ||
+ | mix-blend-mode: | ||
+ | } | ||
+ | } | ||
+ | navbar | ||
animation: gradient-anim 8s linear forwards; | animation: gradient-anim 8s linear forwards; | ||
} | } | ||
Line 39: | Line 56: | ||
} | } | ||
- | change-paragraph-color { | ||
- | 0% {color: black;} | ||
- | 100% {color: red;} | ||
- | } | ||
- | } | ||
%% | %% | ||