summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/components/not-found/BlinkingCursor.module.scss
blob: aba0c604f0e85d55b5d53f7c2a360e43540df172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.blinkingCursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from,
    to {
        color: #eeeeee;
    }
    50% {
        color: #333333;
    }
}