aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/search/CheckBox.scss
blob: f7652d830e5063672968d6a18f7108f0764df6f4 (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
@import "../globalCssVariables";

.checkbox {
    display: flex;

    .outer {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
    }

    .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;
    }

    .check-container {
        width: 40px;
        height: 40px;
        position: absolute;
        z-index: 1000;
    }

    .box:hover {
        background-color: $intermediate-color;
    }

    .checkmark {
        z-index: 1000;
        position: absolute;
        fill-opacity: 0;
        stroke-width: 4px;
        stroke: white;
    }

}

.checkbox-title {
    text-transform: uppercase;
    margin-left: 10px;
}