index-view-layout-top.scss 1.5 KB
Newer Older
1
.index-view-layout--top {
2 3 4
    font-size: var(--app-font-size);
    line-height: var(--app-line-height);
    color: var(--app-color-black);
5
    .index-view-header {
6 7 8 9 10 11
        height: 64px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--app-color-black);
        color: var(--app-color-white);
12
        .index-view-header__left {
13 14 15
            font-size: 21px;
            font-weight: 700;
            margin-left: 50px;
16 17 18
            .app-caption {
                color: var(--app-color-white);
            }
19 20 21 22 23 24
            .app-icon {
                width: 36px;
                height: 37px;
                margin-right: 6px;
            }
        }
25
        .index-view-header__right {
26 27
            display: flex;
            align-items: center;
28
            margin-right: 38px;
29 30
        }
    }
31
    .index-view-content {
32 33 34 35
        height: calc(100% - 64px);
        overflow: auto;
        padding: 20px 38px 0 38px;
        background-color: var(--app-color-gray-400);
36 37
        display: flex;
        flex-direction: column;
38 39
        >.view-container {
            flex-grow: 1;
40 41 42
            +.copyright-notice {
                position: relative;
            }
43
        }
44
    }
45 46
    .copyright-notice {
        height: 100px;
47
        width: 100%;
48
        text-align: center;
49
        flex-shrink: 0;
50 51
        position: absolute;
        bottom: 0px;
52 53
        .notice {
            padding-top: 10px;
54
            color: var(--app-color-gray-200);
55 56
        }
    }
57
}