forked from constructorlabs/react-quizmachine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (86 loc) · 1.55 KB
/
style.css
File metadata and controls
103 lines (86 loc) · 1.55 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
*{
box-sizing: border-box;
/* margin:10px; */
}
a {color: inherit;
text-decoration: none;
}
body {
margin: 0;
font-family: 'IBM Plex Serif', serif;
/* background: rgb(36, 36, 77); */
background-image:url("background2.jpg");
background-repeat:no-repeat;
background-position: center center;
background-size: cover;
color: whitesmoke;
}
.main{
margin-top:10px;
text-align:center;
font-size:30px;
}
.score__money{
display:flex;
flex-direction: row;
margin-left:20px;
}
.score__money--money{
margin:auto;
color: white;
animation: color-blink 0.3s steps(2, start) ;
}
@keyframes color-blink {
to {
color: #38625c;
}
}
.score__money--lifeline{
height:60px;
width:80px;
background-color:rgb(36, 36, 77,0.6);
/* color: whitesmoke; */
/* border:2px solid whitesmoke; */
border-radius:30%;
margin:50px;
}
.main__score{
display:flex;
flex-direction:row;
}
.main__score--image{
margin-right:80px;
width: 350px;
height: 250px;
background-repeat: no-repeat;
background-size: contain;
/* border: 5px groove grey; */
}
.main__score--money{
flex:1;
font-size:30px;
}
.questions__buttons{
width:500px;
height:80px;
background-color:rgb(36, 36, 77,0.6);
border:2px solid whitesmoke;
border-radius:30%;
color:whitesmoke;
margin:30px;
text-align:center;
font-size:30px;
}
.questions__buttons:hover {
background-color: rgb(46, 121, 146, 0.6);
color: white;
}
.questions__response{
font-style:italic;
color:yellow;
}
#hidden{
position:absolute;
visibility: hidden;
/* display:none; */
}