-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (82 loc) · 1.54 KB
/
style.css
File metadata and controls
86 lines (82 loc) · 1.54 KB
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
*,
*:before,
*:after {
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
@media screen and (max-width: 600) and (min-width: 300px) {
.container { width: 100%; }
}
.container{
width: 25rem;
height: 70vh;
background-image: url(img/bg-quizgame.jpg);
background-size: cover;
font-size: 1rem;
}
.types{
width: 13rem;
height: 2rem;
margin: 0.5rem;
}
.newGame{
width: auto;
padding: 0.5rem;
border-radius: 4px;
text-decoration:none;
font-family:'Montserrat',sans-serif;
font-weight:300;
color:#FFFFFF;
background-color: #000000;
text-align:center;
transition: all 0.2s;
}
.newGame:hover{
color:#000000;
background-color:#FFFFFF;
}
.score__text{
padding: 1rem;
margin: 0.1rem 1rem;
color: #FBEEC1;
font-weight: 800;
}
.question__text{
background-color: #8D8741;
padding: 2rem;
height: 17rem;
color: #FBEEC1;
}
.image{
width: 20rem;
height: 10rem;
margin: 0 auto;
background-size: cover;
z-index: 100;
margin: 1rem auto;
}
.choices{
padding: 1rem 0;
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.result{
background-color: #DAAD86;
padding: 1rem 0;
text-align: center;
}
.btn-choice{
background-color: #FBEEC1;
border-radius: 3px;
border: 1px solid #FBEEC1;
cursor: pointer;
color: #8D8741;
font-family: 'Montserrat';
font-size: 1rem;
padding: 0.7rem 0.7rem;
display: block;
margin-bottom: 0.8rem;
width: 40%;
}