-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (50 loc) · 1 KB
/
Copy pathstyles.css
File metadata and controls
56 lines (50 loc) · 1 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
51
52
53
54
55
56
.typing-container {
display: inline;
font: inherit;
font-family: inherit !important;
font-size: 1.1em !important;
user-select: none;
-webkit-user-select: none;
}
.typed, .current, .incorrect, .untyped {
display: inline;
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
line-height: inherit;
font: inherit !important;
font-family: inherit !important;
font-weight: inherit;
font-style: inherit;
letter-spacing: inherit;
word-spacing: inherit;
white-space: normal;
word-wrap: break-word;
word-break: break-word;
user-select: none;
-webkit-user-select: none;
}
/* Container span to prevent any spacing between child spans */
.typed + .current,
.typed + .incorrect,
.current + .untyped,
.incorrect + .untyped {
margin-left: 0;
letter-spacing: inherit;
}
.typed {
color: #4CAF50;
background-color: #E8F5E9;
}
.current {
color: #2196F3;
background-color: #E3F2FD;
}
.incorrect {
color: #F44336;
background-color: #FFEBEE;
}
.untyped {
color: #757575;
}