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

.checkboxfilter {
    display: flex;
    margin-top: 0px;
    padding: 3px;

    .outer {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        margin-top: 0px;

        .check-container:hover~.check-box {
            background-color: $intermediate-color;
        }
    
        .check-container {
            width: 40px;
            height: 40px;
            position: absolute;
            z-index: 1000;

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

        .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;
            -webkit-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
        }
    }

    .checkbox-title {
        display: flex;
        align-items: center;
        text-transform: capitalize;
        margin-left: 15px;
    }

}