blob: 8eee9176b0fe8c0b4dccd519fbdc65f696d1f832 (
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
|
@import "../globalCssVariables";
.checkbox {
display: flex;
.check-box {
z-index: 900;
position: relative;
height: 20px;
width: 20px;
overflow: visible;
background-color: transparent;
border-style: solid;
border-color: $alt-accent;
border-width: 2px;
}
.box:hover {
background-color: $intermediate-color;
}
.checkmark {
z-index: 1000;
position: relative;
fill-opacity: 0;
stroke-width: 4px;
stroke: white;
}
}
.checkbox-title {
text-transform: uppercase;
}
|