-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (109 loc) · 2.06 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
/* Mobile phones */
@media screen and (max-width: 767px) {
.flex-container {
transform: scale(0.6);
}
}
/* Tablets and iPads */
@media screen and (min-width: 768px) and (max-width: 1023px) {
.flex-container {
transform: scale(0.8);
}
}
.flex-container {
margin: 0;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.row {
margin: 0 auto;
width: 100%;
height: 60px;
display: flex;
justify-content: space-around;
align-items: center;
}
#currentQuestion {
background: #fff;
font-size: 3rem;
height: 60px;
line-height: 60px;
margin: 0 -3px 0 0;
text-align: center;
color: #3f51b5;
border-radius: 5px;
border: 2px solid #eee;
box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
}
#currentAnswer {
margin: 0 auto;
border: 2px solid #eee;
box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
border-radius: 5px;
font-size: 3rem;
background: #fff;
width: 250px;
height: 60px;
margin: 0 auto;
color: #3f51b5;
}
#greenScore {
background: #fff;
font-size: 3rem;
height: 60px;
line-height: 60px;
margin: 0 0 0 0;
text-align: center;
color: #3fef10;
border-radius: 5px;
border: 2px solid #3fef10;
box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
}
#redScore {
background: #fff;
font-size: 3rem;
height: 60px;
line-height: 60px;
margin: 0 0 0 0;
text-align: center;
color: #f60e09;
border-radius: 5px;
border: 2px solid #f60e09;
box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
}
#restart {
background: #3f51b5;
font-size: 3rem;
width: 250px;
height: 58px;
line-height: 56px;
margin: 0;
font-weight: 600;
border-radius: 5px;
color: #fff;
}
#gameResult {
background: #fff;
font-size: 3rem;
height: 60px;
line-height: 60px;
margin: 0;
text-align: center;
color: #3f51b5;
border-radius: 5px;
border: 2px solid #eee;
box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
}
#submit {
background: #3f51b5;
font-size: 3rem;
width: 250px;
height: 58px;
line-height: 56px;
margin: 0;
font-weight: 600;
border-radius: 5px;
color: #fff;
}