-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (72 loc) · 1.34 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
* { box-sizing: border-box; }
html, body {
padding: 0px;
margin: 0px;
font-family: Arial;
background: #e7f9ff;
}
h1 {
margin: 0;
padding: 12px 0;
text-align: center;
font-size: 20px;
font-weight: 500;
color: rgba(0,0,0,0.5);
}
h2 {
font-size: 14px;
margin: 0px;
}
main {
padding: 40px 0;
}
article {
width: 660px;
margin: 0px auto;
border: solid 1px rgba(0,0,0,0.6);
border-bottom: solid 3px rgba(0,0,0,0.6);
border-right: solid 3px rgba(0,0,0,0.6);
border-radius: 4px;
padding: 24px;
background: #fff;
}
.question {
margin-top: 8px;
margin-bottom: 24px;
font-size: 20px;
}
.choice {
font-size: 16px;
border: solid 1px rgb(220,220,220);
padding: 16px;
margin-bottom: 16px;
cursor: pointer
}
.choice span {
vertical-align: middle;
}
.choice span.l {
display: inline-block;
border-radius: 999px;
height: 16px;
width: 16px;
background: rgb(220,220,220);
margin-right: 16px;
}
.choice:hover { border: solid 1px rgb(100,100,100); }
.choice:hover .l{ background: rgb(100,100,100); }
.choice.active { border: solid 1px #a765ff; }
.choice.active .l{ background: #a765ff; }
.submit { text-align: center }
.submit button {
background: #a765ff;
color: #fff;
border: none;
padding: 12px 32px;
border-radius: 4px;
font-size: 18px;
cursor: pointer;
}
.submit button:hover {
background: #984aff;
}