blob: d9cf16a72fe8f65b093ceb4ef9b83484212001a2 [file] [log] [blame]
Michael Landoed64b5e2017-06-09 03:19:04 +03001
2html,
3body {
4 height: 100%;
5}
6
7* {
8 box-sizing: border-box;
9}
10
11.sdc-welcome-new-page {
12
13 opacity: 0;
14 height: 100%;
15 background-color: @main_color_p;
16
17 .sdc-welcome-close {
18 position: absolute;
19 right: 38px;
20 top: 30px;
21 z-index: 101;
22 cursor: pointer;
23
24 .sprite-welcome;
25 .sprite-welcome.close;
26
27 &:hover {
28 .sprite-welcome.close_white;
29 }
30 }
31
32 .sdc-welcome-wrapper {
33 height: 100vh;
34 width: 100%;
35 background-size: cover;
36 position: relative;
37 display: flex;
38 align-items: center;
39 justify-content: center;
40 background-image: url(images/welcome/002.png);
41 }
42
43 .sdc-welcome-main {
44 text-align: center;
45 position: absolute;
46 bottom: 40%;
47 z-index: 1;
48 color: #fff;
49 left: 0;
50 width: 100%;
51 }
52
53 .sdc-welcome-cover {
54 position: absolute;
55 top: 0px;
56 right: 0;
57 left: 0;
58 bottom: 0;
59 background-color: rgba(14, 13, 12, 0.8);
60 z-index: 0;
61 }
62
63}