~mika/www.m1kadev.nl

ref: dce311bd3c1f578889cf6db2742444875d820341 www.m1kadev.nl/styles/index.css -rw-r--r-- 582 bytes
dce311bd — m1ka im actually stupid 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@keyframes rotate {
    0% {
        transform: rotate(90deg) scaleY(-1);
    }

    50% {
        transform: rotate(90deg) scaleY(1);
    }

    100% {
        transform: rotate(90deg) scaleY(-1);
    }
}

#colon-three {
    display: inline-block;
    font-style: normal;
    font-family: "Comic Sans MS", "Comic Sans", "Comic Neue", sans-serif;

    animation-name: rotate;
    animation-duration: 90s;
    animation-iteration-count: infinite;
    animation-timing-function: steps(1);
}

#colon-three::before {
    content: ":";
}

#colon-three:hover::before {
    content: ";";
}