-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmatching.css
82 lines (82 loc) · 1.42 KB
/
matching.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
.quiz-wrapper {
position: relative;
display: block;
width: 510px;
height: 450px;
p.question-description {
background: #19286C;
color: white;
padding: 25px 20px;
}
ul.options {
position: relative;
display: inline-block;
vertical-align: top;
width: 165px;
list-style: none;
border: 1px solid #19286C;
text-align: center;
padding: 0;
margin: 0;
li {
border: 1px solid transparent;
padding: 6px 8px;
}
li.title {
background: #19286C;
color: white;
}
li.option {
display: block;
position: relative;
z-index: 50;
font-size: 13px;
}
}
.answers {
display: inline-block;
width: 335px;
font-size: 13px;
line-height: 20px;
.target {
display: inline-block;
width: 110px;
background: lightblue;
margin: 0 3px;
text-align:center;
}
}
button[type="submit"] {
display:block;
position: relative;
margin:10px auto;
padding: 10px;
background: #19286C;
border: none;
color: white;
font-size: 16px;
}
}
.lightbox-bg {
display: none;
position: absolute;
z-index: 100;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba( 0,0,0,.7 );
}
.status {
display: none;
position: absolute;
z-index: 110;
text-align:center;
width: 80%;
top: 220px;
left: 47px;
p {
background: white;
padding: 30px;
}
}