From 7caf0e8652e6c71e66c935242855d260e96442f7 Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Wed, 6 May 2020 20:53:27 -0600 Subject: [PATCH] Added blinking cursor --- style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/style.css b/style.css index b1a2b41..12c043d 100644 --- a/style.css +++ b/style.css @@ -60,6 +60,13 @@ hr { padding: 1em; border-radius: 0.25em; } +h1::after { + content: "_"; + animation-name: cursor; + animation-iteration-count: infinite; + animation-timing-function: cubic-bezier(1.0,0,0,1.0); + animation-duration: 1s; +} h1 { text-transform: uppercase; color: #fb5;