summaryrefslogtreecommitdiffstats
path: root/webapp/sass/routes/_about-modal.scss
blob: 539130ad0a770569e5b98e4b0d05d265e1921203 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@charset 'UTF-8';

.modal {
    .modal-content {
        @include box-shadow(0 0 10px rgba($black, .5));
        border-radius: $border-rad;
    }

    .about-modal {
        .modal-content {
            .modal-header {
                background: transparent;
                border: none;
                color: inherit;
                padding: 20px 25px 0;

                .close {
                    color: inherit;
                    font-weight: normal;
                    right: 15px;
                }

                .modal-title {
                    color: inherit;
                    font-size: 16px;
                }

                .icon {
                    margin: 0 5px 0 8px;
                    position: relative;
                    top: 1px;

                    svg {
                        @include opacity(.8);
                        height: 14px;
                        width: 14px;
                    }
                }
            }
        }

        .modal-body {
            padding: 20px 25px 10px;
        }

        &.large {
            .modal-body {
                padding-bottom: 20px;
            }
        }

        .about-modal__content {
            @include clearfix;
            @include display-flex;
            @include flex-direction(row);
            padding: 1em 0 3em;
        }

        .about-modal__copyright {
            @include opacity(.6);
            margin-top: .5em;
        }

        .about-modal__footer {
            font-size: 13.5px;
        }

        .about-modal__title {
            line-height: 1.5;
            margin: 0 0 10px;
        }

        .about-modal__subtitle {
            @include opacity(.6);
        }

        .about-modal__hash {
            @include opacity(.4);
            font-size: .75em;
            text-align: right;

            p {
                &:first-child {
                    float: left;
                    text-align: left;
                }
            }
        }

        .about-modal__notice {
            @include opacity(.8);
            font-size: .79em;
            text-align: right;

            p {
                &:first-child {
                    text-align: left;
                }
            }
        }

        .about-modal__logo {
            @include opacity(.9);
            padding: 0 40px 0 20px;

            svg {
                height: 125px;
                width: 125px;
            }

            path {
                fill: inherit;
            }
        }
    }
}