aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/assets/styles/welcome-style.less
blob: d9cf16a72fe8f65b093ceb4ef9b83484212001a2 (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
html,
body {
    height: 100%;
}

* {
    box-sizing: border-box;
}

.sdc-welcome-new-page {

    opacity: 0;
    height: 100%;
    background-color: @main_color_p;

    .sdc-welcome-close {
        position: absolute;
        right: 38px;
        top: 30px;
        z-index: 101;
        cursor: pointer;

        .sprite-welcome;
        .sprite-welcome.close;

        &:hover {
            .sprite-welcome.close_white;
        }
    }

    .sdc-welcome-wrapper {
        height: 100vh;
        width: 100%;
        background-size: cover;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url(images/welcome/002.png);
    }

    .sdc-welcome-main {
        text-align: center;
        position: absolute;
        bottom: 40%;
        z-index: 1;
        color: #fff;
        left: 0;
        width: 100%;
    }

    .sdc-welcome-cover {
        position: absolute;
        top: 0px;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: rgba(14, 13, 12, 0.8);
        z-index: 0;
    }

}