no bitches?????????????????

This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich 2022-12-02 10:28:20 +10:00
parent 320b7db3c4
commit 004a39021c

View File

@ -5,197 +5,136 @@
} }
@keyframes red { @keyframes red {
from { 25% {
left: -250%; left: -240%;
top: -300%; top : -130%;
} }
25% { 50% {
left: -240%; left: -100%;
top: -130%; top : -120%;
} }
50% { 75% {
left: -100%; left: -160%;
top: -120%; top : -230%;
} }
75% { 100% {
left: -160%; left: -250%;
top: -230%; top : -300%;
} }
to {
left: -250%;
top: -300%;
}
} }
@keyframes blue { @keyframes blue {
from { 25% {
left: -280%; left: -180%;
top: -80%; top : -100%;
} }
25% { 50% {
left: -180%; left: -120%;
top: -100%; top : -250%;
} }
50% { 75% {
left: -120%; left: -250%;
top: -250%; top : -300%;
} }
75% { 100% {
left: -250%; left: -280%;
top: -300%; top : -80%;
} }
to {
left: -280%;
top: -80%;
}
} }
@keyframes green { @keyframes green {
from { 25% {
left: -180%; left: -120%;
top: -100%; top : -250%;
} }
25% { 50% {
left: -120%; left: -250%;
top: -250%; top : -300%;
} }
50% { 75% {
left: -250%; left: -280%;
top: -300%; top : -80%;
} }
75% { 100% {
left: -280%; left: -180%;
top: -80%; top : -100%;
} }
to {
left: -180%;
top: -100%;
}
} }
@keyframes background { @keyframes wrap-background {
from { 25% {
background-color: #ff5c5c; background-color: #9395ff;
} }
25% { 50% {
background-color: #9395ff; background-color: #fff393;
} }
50% { 75% {
background-color: #fff393; background-color: #534eff;
} }
75% { 100% {
background-color: #534eff; background-color: #ff5c5c;
} }
to {
background-color: #ff5c5c;
}
} }
body { :is(div, section).gradient {
height: 100vh; position : relative;
margin: unset; overflow : hidden;
background: #222; animation-duration : 30s;
animation-name : wrap-background;
animation-iteration-count: infinite;
background-repeat : no-repeat;
animation-timing-function: ease-in-out;
background-color : #ff5c5c;
} }
main { :is(div, section).gradient>div:not(.gradient) {
height: 100%; z-index : -1000;
display: flex; width : 500%;
flex-direction: column; height : 500%;
position : absolute;
pointer-events : none;
filter : blur(200px);
animation-duration : 12s;
background-repeat : no-repeat;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
} }
#authentication { :is(div, section).gradient>div.red {
width: 40vw; left : -250%;
margin: auto auto; top : -300%;
animation-name: red;
background-image: radial-gradient(circle,
rgba(255, 25, 25, 1) 0%,
rgba(0, 0, 0, 0) 35%);
} }
#authentication > h1 { :is(div, section).gradient>div.blue {
margin: unset; left : -280%;
color: #fff; top : -80%;
animation-name: blue;
background-image: radial-gradient(circle,
rgba(25, 25, 255, 0.6) 0%,
rgba(0, 0, 0, 0) 35%);
} }
#authentication > h1.header { :is(div, section).gradient>div.green {
width: 100%; left : -180%;
height: 60px; top : -100%;
padding-bottom: 0.3ex; animation-name: green;
display: flex; background-image: radial-gradient(circle,
justify-content: center; rgba(25, 255, 25, 1) 0%,
align-items: center; rgba(0, 0, 0, 0) 35%);
}
#authentication > h1.header.gradient {
z-index: -2000;
position: relative;
overflow: hidden;
animation-duration: 65s;
animation-name: background;
animation-iteration-count: infinite;
background-repeat: no-repeat;
animation-timing-function: ease-in-out;
}
#authentication > h1.header.gradient > div {
z-index: -1000;
width: 500%;
height: 500%;
position: absolute;
pointer-events: none;
animation-duration: 25s;
background-repeat: no-repeat;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}
#authentication > h1.header.gradient > div.red {
animation-name: red;
background-image: radial-gradient(
circle,
rgba(255, 25, 25, 1) 0%,
rgba(0, 0, 0, 0) 35%
);
}
#authentication > h1.header.gradient > div.blue {
animation-name: blue;
background-image: radial-gradient(
circle,
rgba(25, 25, 255, 0.6) 0%,
rgba(0, 0, 0, 0) 35%
);
}
#authentication > h1.header.gradient > div.green {
animation-name: green;
background-image: radial-gradient(
circle,
rgba(25, 255, 25, 1) 0%,
rgba(0, 0, 0, 0) 35%
);
}
#authentication > div.content {
height: 300px;
background: #1c1b1b;
}
@media (max-height: 400px) {
#authentication {
width: 80vw;
margin: 25vh auto;
}
} }