aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/linking/LinkFollowBox.scss
blob: 9eeed1cc8cb0a713a0ba66bc2d7f50860e20d961 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@import "../globalCssVariables";

.linkFollowBox-main {
    position: absolute;
    background: whitesmoke;
    color: grey;
    border-radius: 15px;
    box-shadow: $intermediate-color 0.2vw 0.2vw 0.4vw;
    border: solid #BBBBBBBB 5px;
    pointer-events: all;

    .linkFollowBox-header {
        height: 50px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 16px;
        width: 100%;
    }

    .direction-indicator {
        font-size: 12px;
    }

    .closeDocument {
        position: relative;
        max-width: 30px;
        top: -20px;
        left: 460px;
        color: $darker-alt-accent
    }

    .closeDocument:hover {
        color: $main-accent;
    }

    .topHeader {
        width: 100%;
        height: 25px;
    }

    .linkFollowBox-footer {
        height: 50px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;

        button {
            background-color: $darker-alt-accent;
            width: 30%;
        }
    }

    .linkFollowBox-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-column-gap: 5px;
        margin-left: 5px;
        margin-right: 5px;

        .linkFollowBox-item {
            background-color: $light-color;
            width: 100%;
            height: 100%;

            .linkFollowBox-itemContent {
                padding: 5px;
                font-size: 12px;
                overflow: scroll;

                input[type=radio] {
                    border: 0px;
                    margin-right: 5px;
                }
            }

            .title {
                display: flex;
                justify-content: center;
                align-items: center;
                text-transform: uppercase;
                color: $light-color;
                background-color: $lighter-alt-accent;
                width: 100%;
                height: 30px;
                border-bottom: solid $darker-alt-accent 5px;
                font-size: 12px;
                text-align: center;
            }
        }
    }
}