aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/TemplateMenu.scss
blob: 8879fc20db329e82e5f0a5160224f385a95ecb14 (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
@use 'global/globalCssVariables.module.scss' as global;
.templating-menu {
    position: absolute;
    pointer-events: auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 75%;
    transition: transform 0.2s;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.templating-button {
    width: 20px;
    height: 20px;
    padding-left: 5px;
    background: black;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;

    &:hover {
        background: global.$medium-gray;
        transform: scale(1.05);
    }
}

.template-list {
    font-family: global.$sans-serif;
    font-size: 12px;
    background-color: global.$light-gray;
    padding: 2px 12px;
    list-style: none;
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
    max-height: 250px;

    .templateToggle,
    .chromeToggle {
        text-align: left;
        color: black;
    }

    input {
        margin-right: 10px;
    }
}