blob: ca441d4df4d2a7f36f43d22d021158850dad5f37 (
plain)
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
|
// Retrive the tab's height by summ its properties
$o-wslides-tabs-height: ($nav-link-padding-y*2) + ($font-size-base * $line-height-base);
// Overal page bg-color: Blend it 'over' the color chosen by the user
// ($body-bg), rather than force it replacing the variable's value.
$o-wslides-color-bg: mix($body-bg, #efeff4);
$o-wslides-color-dark1: #47525f;
$o-wslides-color-dark2: #1f262d;
$o-wslides-color-dark3: #101216;
$o-wslides-fs-side-width: 300px;
// Common to new slides pages
// **************************************************
.o_quiz_gradient {
background-image: linear-gradient(120deg, #875A7B, darken(#875A7B, 10%));
}
.o_quiz_main {
background-color: $o-wslides-color-bg;
.o_wslides_home_nav {
top: -40px;
@include media-breakpoint-up(lg) {
font-size: 1rem;
.o_wslides_nav_navbar_right {
padding-left: $spacer;
margin-left: auto;
border-left: 1px solid $border-color;
}
}
}
.o_quiz_js_quiz {
i.o_quiz_js_quiz_icon {
cursor: pointer;
}
i.o_quiz_js_quiz_icon:hover {
color: black !important;
}
}
.o_quiz_js_quiz_question {
.list-group-item {
font-size: 1rem;
input:checked + i.fa-circle {
color: $primary !important;
}
}
&.disabled {
opacity: 0.5;
pointer-events: none;
}
&.completed-disabled{
pointer-events: none;
}
}
a.o_quiz_js_quiz_is_correct {
color: black;
input:checked + i.fa-check-circle-o {
color: $primary !important;
}
}
.o_quiz_js_quiz_sequence_highlight {
background-color: #1252F3;
height: 1px;
z-index: 3;
&:before, &:after {
content: "";
@include size(6px);
display: block;
border-radius: 100%;
background-color: inherit;
@include o-position-absolute(-2px, -2px);
}
&:after {
right: auto;
left: -2px;
}
}
}
|