You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
951 B
99 lines
951 B
.loader {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: white;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.lettre {
|
|
|
|
color: #9700ff;
|
|
font-family: casino;
|
|
|
|
font-size: 80px;
|
|
|
|
letter-spacing: 15px;
|
|
|
|
margin-bottom: 150px;
|
|
|
|
animation: flash 1.2s linear infinite;
|
|
|
|
|
|
|
|
}
|
|
|
|
@keyframes flash {
|
|
|
|
0% {
|
|
|
|
color: #ff2d00;
|
|
|
|
text-shadow: 0 0 7px #ff2d00;
|
|
|
|
}
|
|
|
|
90% {
|
|
|
|
color: #9700ff;
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
color: #ff2d00;
|
|
|
|
text-shadow: 0 0 7px #ff2d00;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.lettre:nth-child(1){
|
|
|
|
animation-delay: 0.1s;
|
|
|
|
}
|
|
|
|
.lettre:nth-child(2){
|
|
|
|
animation-delay: 0.2s;
|
|
|
|
}
|
|
|
|
.lettre:nth-child(3){
|
|
|
|
animation-delay: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fondu-out {
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.4s ease-out;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "casino";
|
|
src: url("/police/casino.TTF") format("woff2"),
|
|
|
|
}
|
|
|