diff options
author | Michael Lando <ml636r@att.com> | 2017-06-09 03:19:04 +0300 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2017-06-09 03:19:04 +0300 |
commit | ed64b5edff15e702493df21aa3230b81593e6133 (patch) | |
tree | a4cb01fdaccc34930a8db403a3097c0d1e40914b /catalog-ui/src/assets/styles/welcome-style.less | |
parent | 280f8015d06af1f41a3ef12e8300801c7a5e0d54 (diff) |
[SDC-29] catalog 1707 rebase commit.
Change-Id: I43c3dc5cf44abf5da817649bc738938a3e8388c1
Signed-off-by: Michael Lando <ml636r@att.com>
Diffstat (limited to 'catalog-ui/src/assets/styles/welcome-style.less')
-rw-r--r-- | catalog-ui/src/assets/styles/welcome-style.less | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/catalog-ui/src/assets/styles/welcome-style.less b/catalog-ui/src/assets/styles/welcome-style.less new file mode 100644 index 0000000000..d9cf16a72f --- /dev/null +++ b/catalog-ui/src/assets/styles/welcome-style.less @@ -0,0 +1,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; + } + +} |