-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathletters.css
81 lines (68 loc) · 1.09 KB
/
letters.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
73
74
75
76
77
78
79
80
81
html, body {
font-size: 20px;
line-height: 1;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body {
background-color: cornflowerblue;
}
p, li {
font-size: 0.9rem;
}
#container1 {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#game-section {
background-color: #c8e5ff;
border: 10px solid #014598d9;
border-radius: 5px;
max-width: 350px;
padding: 10px;
min-height: 450px;
min-width: 200px;
}
#show-word {
font-weight: bold;
}
#word-input {
font-size: 1rem;
font-weight: 800;
}
.good-input {
color: #006eff;
}
.bad-input {
color: #ff0000;
}
.end-input {
color: #8a2be2;
}
#display-time {
background-color: aqua;
width: 20px;
border: 5px solid orange;
padding: 25px;
margin: auto;
}
#first-div {
text-align: center;
}
#second-div {
font-size: 0.8rem;
display: flex;
flex-flow: row wrap;
}
#second-div>div {
flex: 1 1 0;
text-align: center;
margin: 0 1%;
padding: 4px;
border-radius: 10px;
background-color: lightblue;
}
#assert {
height: 50px;
}