-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·106 lines (94 loc) · 1.55 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
body {
font-family: "Oswald", sans-serif;
background: #fff;
}
.container {
height: 350px;
width: 800px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #000;
border-radius: 0.5em;
padding: 30px;
margin-top: 50px;
}
.title {
margin: 20px 0;
text-align: center;
font-size: 2em;
text-transform: uppercase;
color: #fff;
font-weight: 700;
letter-spacing: 0.05em;
}
img {
width: 240px;
height: 240px;
display: block;
margin-left: auto;
margin-right: auto;
}
.question {
padding: 20px;
font-size: 1.2em;
background: #d91225;
border-radius: 0.5em;
margin: 20px 0 20px 0;
color: #fff;
}
.grid-container {
display: grid;
grid-template-columns: repeat(2, 390px);
grid-gap: 20px;
}
.option {
border: none;
outline: none;
padding: 10px 10px;
margin: 0px;
vertical-align: middle;
background-color: #fff;
color: #2f2820;
border-radius: 0.5em;
}
input[type="radio"] {
margin: 0 5px 0 0;
}
input[type="radio"],
label {
cursor: pointer;
}
.option:hover {
background-color: #f0f0f0;
color: #000;
cursor: pointer;
}
.next-btn {
border: none;
outline: none;
background: #404040;
color: #fff;
width: 100px;
height: 35px;
border-radius: 0.5em;
cursor: pointer;
float: right;
padding: 0;
margin: 20px 0px;
transition: all 0.3s ease 0s;
}
.next-btn:hover {
background-color: #fff;
color: #404040;
}
.result {
width: 600px;
height: 60px;
line-height: 60px;
text-align: center;
font-size: 3.75em;
border-radius: 0.2em;
color: #fff;
}