22 lines
428 B
HTML
22 lines
428 B
HTML
<style>
|
|
@importrt url(https://fonts.googleapis.com/css?family=Exo+2:200i);
|
|
.title {
|
|
font-size: 24px;
|
|
font-family: 'Exo 2', sans-serif;
|
|
font-weight: lighter;
|
|
}
|
|
.title .flicker {
|
|
animation: flicker 3s linear infinite;
|
|
}
|
|
|
|
@keyframes flicker {
|
|
0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
|
|
opacity: .1;
|
|
|
|
}
|
|
20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
|
|
opacity: 0.99;
|
|
}
|
|
}
|
|
</style>
|