-
Notifications
You must be signed in to change notification settings - Fork 0
/
quizsucodu.css
92 lines (86 loc) · 1.55 KB
/
quizsucodu.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
body
{
font-family: 'Roboto Slab', serif;
}
.container1
{
height: 200px;
width: 400px;
position: absolute;
bottom : 50%;
left:50%;
transform: translateX(-50%) translateY(-30%);
background: rgba(255,255,255,0.5);
padding: 20px;
border: 1px solid #08038C;
box-shadow: 0 0 8px 3px;
}
.title
{
padding-top: 28px;
margin-bottom:50px;
text-align: center;
font-size: 36px;
text-transform: uppercase;
color : #08038C;
}
.question
{
padding: 20px;
font-size: 22px;
border-radius: 20px;
margin: 10px 0 10px 0;
color:#000000;
}
.option
{
width: 470px;
display: inline-block;
padding: 10px 0 10px 15px;
vertical-align: middle;
background: rgba(255,255,255,0.5);
margin: 10px 0 10px 10px;
color: #000000;
border-radius: 20px;
font-size: 20px;
}
.option:hover{
background: #08038C;
color:#f6f6f6;
}
.next-btn
{
border : none;
outline: none;
background: rgba(255,25,255,0.5);
width: 100px;
height: 35px;
border-radius: 20px;
cursor: pointer;
float : right;
margin: 10px;
}
.next-btn:hover
{
background: #08038C;
color: #f6f6f6;
}
.result{
height: 100px;
text-align: center;
font-size: 75px;
}
.option input:checked .option
{
background: #08038C;
color: #000;
}
.tbody {
display: table-row-group;
vertical-align: middle;
border-color: inherit;
border-top-color: inherit;
border-right-color: inherit;
border-bottom-color: inherit;
border-left-color: inherit;
}