aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/linking/LinkFollowBox.scss
blob: aedbfdea48b2024f309a984416176ce55f968a9b (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
@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;
    // overflow: hidden;

    .linkFollowBox-header {
        height: 30px;
        text-align: center;
        text-transform: uppercase;
        line-height: 30px;
        letter-spacing: 2px;
        font-size: 16px;
    }

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

        button {
            background-color: $darker-alt-accent;
            // height: 30px;
            width: 30%;
            // font-size: 18px;
        }
    }

    .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;
                // line-height: 40px;
                overflow: scroll;


                input[type=radio] {
                    border: 0px;
                    // width: 100%;
                    // height: 20px;
                    // width: 20px;
                    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;
            }
        }
    }

}