Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions projects/typing-test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ <h1>Typing Test</h1>

<div id="text" class="text" aria-live="polite"></div>
<div id="caret" class="caret"></div>
<div id="caret" class="caret"></div>

<div class="stats">
WPM: <span id="wpm">0</span> • Accuracy: <span id="acc">100</span>% • Time: <span id="time">60</span>s
Expand Down
7 changes: 1 addition & 6 deletions projects/typing-test/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,7 @@ button:hover {
}

.caret {
position: absolute;
width: 3px;
height: 2.5rem;
background: #00d0ff;
animation: blink 1s infinite;
display: none; /* hidden until typing starts */
display: none;
}

@keyframes blink {
Expand Down
Loading