Skip to content

Commit 508adf4

Browse files
committed
Add pulsating text
1 parent d4b0a01 commit 508adf4

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

src/style/loading.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,14 @@
1515

1616
#loading img {
1717
max-width: 40rem;
18+
}
19+
20+
#loading p {
21+
animation: pulsate 2s infinite;
22+
}
23+
24+
@keyframes pulsate {
25+
from { opacity: 1; }
26+
50% { opacity: 0; }
27+
to { opacity: 1; }
1828
}

0 commit comments

Comments
 (0)