forked from FreeTubeApp/FreeTube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft-community-poll.css
70 lines (60 loc) · 1.18 KB
/
ft-community-poll.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
.vote-count {
padding-block-end: 6px;
font-size: smaller;
}
.empty-circle {
background-color: transparent;
border-radius: 50%;
border-style: solid;
border-width: 2px;
display: block;
float: var(--float-left-ltr-rtl-value);
block-size: 10px;
position: relative;
inline-size: 10px;
}
.filled-circle {
border-radius: 50%;
background-color: #000;
float: var(--float-left-ltr-rtl-value);
block-size: 6px;
inset-inline-start: 2px;
inset-block-start: 2px;
position: relative;
inline-size: 6px;
}
.option-text {
margin-inline-start: 10px;
}
.option {
display: flex;
align-items: center;
padding-block: 5px;
border-radius: 5px;
border-style: solid;
border-width: 1px;
padding-inline-start: 10px;
margin-block-end: 10px;
}
.option > img {
margin-inline-start: 10px;
block-size: 125px;
}
.correct-option {
border-color: #78da71;
border-width: 2px;
}
.correct-option .filled-circle {
background-color: #78da71;
}
.incorrect-option {
border-color: #dd4e4e;
border-width: 2px;
}
.reveal-answer {
justify-content: center;
cursor: pointer;
}
.reveal-answer:hover, .reveal-answer:focus {
background-color: var(--side-nav-hover-color)
}