-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmy-styles.css
72 lines (63 loc) · 1.14 KB
/
my-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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.correct {
/* color: green; */
font-weight: bold;
}
.incorrect {
color: red;
/* text-decoration: underline; */
}
.current_character {
background: palegreen;
/* background: palegoldenrod; */
}
.wpm {
background-color: palegreen;
/* height: 60px; */
width: 70px;
margin: 8px;
/* padding: 12px; */
border-radius: 20%;
box-shadow: black 5px 8px 5px;
align-content: center;
}
.accuracy {
background-color: palegoldenrod;
/* height: 60px; */
width: 70px;
margin: 8px;
/* padding: 12px; */
border-radius: 20%;
box-shadow: black 5px 8px 5px;
align-content: center;
}
.errors {
background-color: #da6446;
/* height: 60px; */
width: 70px;
margin: 8px;
/* padding: 12px; */
border-radius: 20%;
box-shadow: black 5px 8px 5px;
align-content: center;
}
.header_text {
font-size: 0.8rem;
font-weight: 600;
align-items: center;
}
.curr_time, .curr_errors,
.curr_accuracy, .curr_cpm,
.curr_wpm {
font-size: 0.8rem;
font-weight: 600;
}
.userinput {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
border: none;
background: #f1f1f1;
}
.table_cell {
text-align: center;
}