100-project-100-days-website/100_projects/13-mix-blend-loading/style.css

41 lines
627 B
CSS
Raw Normal View History

2023-03-06 17:16:50 +03:00
* {
box-sizing: border-box;
}
body {
margin: 0;
background-color: #8A2BE2;
}
div {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
color: white;
}
div span {
2023-03-06 17:19:24 +03:00
font-size: 65px;
2023-03-06 17:16:50 +03:00
letter-spacing: 5px;
text-transform: uppercase;
line-height: 1;
mix-blend-mode: difference;
}
div::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100px;
height: 100%;
background-color: white;
animation: move 4s linear infinite;
}
@keyframes move {
0%,
100% {
left: 0;
}
50% {
left: calc(100% - 100px);
}
2023-03-06 17:19:24 +03:00
}