-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (65 loc) · 1.17 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
body,div{
padding: 0;
margin: 0;
border: 0;
}
body{
width: 100vw;
height: 100vh;
overflow: hidden;
}
.row{
display: flex;
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
}
.panel{
border: 1px solid black;
height: 50vh;
width: 40vw;
display: flex;
flex-direction: column;
}
.question{
margin:auto 0;
text-align: center;
user-select: none;
margin: auto;
padding: 5px 30px;
border-radius: 15px;
}
.btn-generate{
margin:auto auto;
padding: 10px 50px;
border-radius: 5px;
border: 1px solid #00838f;
background-color: #00838f;
color: rgba(255, 255, 255, 0.87);
font-size: 20px;
font-weight: 600;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-transform: uppercase;
}
.answer{
width: 80%;
margin: auto;
font-size: 30px;
}
.wrong-answer{
background-color: #D32F2F;
}
.true-answer{
background-color: #689F38;
}
.wrong-answer,
.true-answer{
color:#ecf0f1;
}
@media (max-width: 800px) {
.panel{
height: 100vh;
width: 100vw;
}
}