nitro-react/src/views/hotel-view/HotelView.scss

99 lines
1.7 KiB
SCSS
Raw Normal View History

2021-04-15 08:49:56 +02:00
.nitro-hotel-view {
display: block;
position: fixed;
width: 100%;
2021-07-04 00:30:38 +02:00
height: calc(100% - 55px);
2021-04-15 08:49:56 +02:00
background: rgba($black, 1);
2021-07-25 07:50:29 +02:00
color:#000;
2021-04-15 08:49:56 +02:00
.avatar-image {
bottom: 12px;
left: 63px;
position: absolute;
z-index: 1;
}
.background {
2021-07-25 07:50:29 +02:00
top:0;
2021-04-15 08:49:56 +02:00
height: 100%;
width: 100%;
background-position: left;
background-repeat: repeat-y;
}
.drape {
width: 100%;
height: 100%;
left: 0px;
top: 0;
animation-iteration-count: 1;
animation-name: slideDown;
animation-duration: 1s;
z-index: 3;
background-repeat: no-repeat;
}
.sun {
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
margin: auto;
background-repeat: no-repeat;
2021-07-04 00:30:38 +02:00
background-position: top center;
2021-04-15 08:49:56 +02:00
}
.left {
2021-06-12 04:53:56 +02:00
width: 1200px;
height: 800px;
2021-04-15 08:49:56 +02:00
bottom: 0;
left: 0;
animation-iteration-count: 1;
animation-name: slideUp;
animation-duration: 1s;
background-repeat: no-repeat;
}
.right {
width: 100%;
height: 100%;
right: 0;
bottom: 0;
animation-iteration-count: 1;
animation-name: slideUp;
animation-duration: 1s;
background-repeat: no-repeat;
2021-07-04 00:30:38 +02:00
background-position: right bottom;
2021-04-15 08:49:56 +02:00
}
.right-repeat {
width: 100%;
height: 100%;
right: 0;
top: 0;
background-repeat: no-repeat;
2021-07-04 00:30:38 +02:00
background-position: right top;
2021-04-15 08:49:56 +02:00
}
2021-07-22 11:03:00 +02:00
2021-07-25 07:50:29 +02:00
.landing-widgets {
z-index: 9;
position: relative;
2021-07-22 11:03:00 +02:00
}
2021-07-25 07:50:29 +02:00
.widget-slot {
z-index: 9;
2021-07-22 11:03:00 +02:00
}
2021-07-25 07:50:29 +02:00
hr {
background: $black;
box-shadow: 0 1px rgba($white,.5);
opacity: 0.5
2021-07-22 11:03:00 +02:00
}
2021-04-15 08:49:56 +02:00
}
2021-07-22 11:03:00 +02:00
@import './views/widgets/promo-article/PromoArticleWidgetView.scss';
2021-07-25 02:52:54 +02:00
@import './views/widgets/bonus-rare/BonusRareWidgetView.scss';
2021-07-25 09:07:34 +02:00
@import './views/widgets/hall-of-fame/HallOfFameWidgetView.scss';