-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (49 loc) · 1.01 KB
/
style.css
File metadata and controls
50 lines (49 loc) · 1.01 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.typing-text {
font-family: 'Courier New', monospace;
line-height: 1.8;
letter-spacing: 0.5px;
}
.current-word {
background: linear-gradient(90deg, #3b82f6, #2563eb);
color: white;
padding: 2px 4px;
border-radius: 4px;
}
.correct {
color: #10b981;
}
.incorrect {
color: #ef4444;
text-decoration: underline;
background-color: #fef2f2;
}
.cursor {
display: inline-block;
width: 2px;
height: 1.2em;
background-color: #3b82f6;
animation: blink 1s infinite;
vertical-align: middle;
margin-left: 2px;
}
@keyframes blink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0; }
}
.progress-ring {
transition: stroke-dashoffset 0.1s linear;
}
.correct {
color: #10b981;
}
.incorrect {
color: #ef4444;
text-decoration: underline;
background-color: #fef2f2;
}
.current-word {
background: linear-gradient(90deg, #3b82f6, #2563eb);
color: white;
padding: 2px 4px;
border-radius: 4px;
}