-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (98 loc) · 1.41 KB
/
style.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
.hide {
display: none;
}
body {
font-family: Raleway;
display: flex;
flex-direction: column;
align-items: center;
width: 95%;
}
h1 {
font-size: 40px;
}
button {
border: 1px solid darkgray;
color: black;
padding: 8px 15px;
font-family: Raleway;
}
input {
padding: 5px;
font-size: 15px;
font-family: Raleway;
}
.user-inputs, .game-container, .inputerror-container {
text-align: center;
}
.user-inputs * {
margin: 5px auto;
display: block;
}
.user-inputs p {
font-size: 14px;
color: gray;
margin-top: -10px;
margin-bottom: 20px;
}
.game-container h4 {
margin: 10px;
}
.game-container button {
text-align: center;
margin: 10px auto;
}
.options-container {
width: 250px;
margin: 0 auto;
text-align: left;
}
.game-container input {
margin: 5px;
}
.hint-container {
margin: 10px;
}
.hint-container * {
text-align: center;
margin: 0 auto;
}
.inputerror-container div{
margin: 5px auto 20px;
width: 80%;
}
.inputerror-container button {
display: block;
margin: 8px auto;
}
.right {
background-color: lightgreen;
}
.wrong {
background-color: #ff8080;
}
.result * {
display: inline-block;
margin: 5px 5px;
}
.result-images {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 0 auto;
}
.result p {
display: block;
text-align: center;
margin: 10px auto;
}
.score{
font-size: 30px;
}
.guess {
font-size: 12px;
}
.result button {
display: block;
margin: 10px auto;
}