-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
51 lines (46 loc) · 866 Bytes
/
styles.css
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
51
body { background-color: rgb(44, 44, 44); color: white; }
span { font-size: 30px; position: relative}
.neutral { color: white }
.correct { color: green }
.incorrect { color: red }
@keyframes blink {
from, to {
background: orange;
}
50% {
background: transparent;
}
}
.neutral.next::after {
content: "";
animation: 0.5s blink step-end infinite;
position: absolute;
left: 0;
width: 100%;
height: 4px;
bottom: 0px;
}
.elm-area {
max-width: 700px;
margin: auto;
}
.typelm-container {
display: flex;
flex-direction: column;
align-items: center;
}
.typelm-header {
display: flex;
justify-content: space-between;
width: 100%;
margin-bottom: 20px;
font-size: 20px;
color: darkgray;
font-family: monospace;
align-items: center;
}
.typelm-text {
font-family: Courier;
line-height: 1.5;
letter-spacing: 2px;
}