-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (63 loc) · 1.25 KB
/
style.css
File metadata and controls
72 lines (63 loc) · 1.25 KB
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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
font-family: "Raleway", sans-serif;
background: #f0f5ff;
}
.poll {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
background: #fff;
border-radius: 10px;
box-shadow: 0px 0px 20px 5px rgba(35, 30, 128, 0.05);
}
.poll .question {
padding: 20px;
color: #111;
font-size: 18px;
border-bottom: 1px solid #eee;
}
.poll .answers {
padding: 20px 20px 10px;
}
.poll .answers .answer {
position: relative;
width: 100%;
height: 40px;
padding: 0px 10px;
line-height: 40px;
color: #111;
margin-bottom: 10px;
border: 1px solid #d4d4d4;
border-radius: 10px;
cursor: pointer;
overflow: hidden;
}
.poll .answers .answer.selected {
border: 2px solid #8f9fe8;
}
.poll .answers .answer span.percentage-value {
position: absolute;
top: 50%;
right: 0px;
width: 40px;
transform: translateY(-50%);
color: #111;
font-size: 15px;
}
.poll .answers .answer span.percentage-bar {
position: absolute;
top: 0px;
left: 0px;
width: 50%;
height: 100%;
background: #ccd8f1;
z-index: -1;
transition: width 300ms ease-in-out;
}