-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (69 loc) · 1.22 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
body{
font-family: "Roboto Slab", serif;
background: #6cf;
}
.container{
height: 330px;
width: 1000px;
position:absolute;
top:50%;
left:50%;
transform: translateX(-50%) translateY(-50%);
background: rgba(255, 255, 255, 0.5);
padding:20px;
border:1px solid #08038c;
}
.titleContainer{
padding-top: 20px;
text-align: center;
font-size: 36px;
text-transform: uppercase;
color:#08038c;
}
.questions{
padding:20px;
font-size: 22px;
background: #08038c;
border-radius: 20px;
margin:10px 0 10px 0;
color: #f6f6f6;
}
.optionToChoose{
width: 470px;
display: inline-block;
padding:10px 0 10px 10px;
vertical-align: middle;
background: rgba(255,255,255,0.5);
margin: 10px 0 10px 10px;
color:#000000;
border-radius: 20px;
}
.optionToChoose:hover{
background:#08038c;
color:#f6f6f6;
}
.nextButtons{
border:none;
outline:none;
background-color: rgba(255, 255, 255, 0.5);
color: black;
width: 100px;
height:35px;
border-radius: 20px;
cursor:pointer;
float: right;
margin:10px;
}
.nextButtons:hover{
background: #08038c;
color: white;
}
.resultContainer{
height:100px;
text-align: center;
font-size: 75px;
}
.optionToChoose input:checked .optionToChoose{
background: #08038c;
color: #000;
}