aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/PresBox.scss
blob: d48000e16adcce7952226c3f701a73d124f2bb6c (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
.presBox-cont {
    position: absolute;
    pointer-events: inherit;
    z-index: 2;
    box-shadow: #AAAAAA .2vw .2vw .4vw;
    width: 100%;
    min-width: 20px;
    height: 100%;
    min-height: 41px;
    letter-spacing: 2px;
    overflow: hidden;
    transition: 0.7s opacity ease;

    .presBox-listCont {
        position: absolute;
        height: calc(100% - 25px);
        width: 100%;
    }
    .presBox-buttons {
        width: 100%;
        background: gray;
        padding-top: 5px;
        padding-bottom: 5px;
        display: grid;
        grid-column-end: 4;
        grid-column-start: 1;
        .presBox-viewPicker {
            height: 25;
            position: relative;
            display: inline-block;
            grid-column: 1/2;
            min-width: 15px;
        }
        select {
            background: #323232;
            color: white;
        }
        .presBox-button {
            margin-right: 2.5%;
            margin-left: 2.5%;
            height: 25px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            background: #323232;
            color: white;
            svg {
                margin: auto;
            }
        }
        .collectionViewBaseChrome-viewPicker {
            min-width: 50;
            width: 5%;
            height: 25;
            position: relative;
            display: inline-block;
        }
    }
    .presBox-backward, .presBox-forward {
        width: 25px;
        border-radius: 5px;
        top:50%;
        position: absolute;
        display: inline-block;
    }
    .presBox-backward {
        left:5;
    }
    .presBox-forward {
        right:5;
    }
}