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

98 lines
1.6 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;
2022-03-17 23:57:20 +01:00
left: 57px;
2021-04-15 08:49:56 +02:00
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 {
2022-03-15 20:06:50 +01:00
top:0;
right:0;
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;
2022-03-15 20:06:50 +01:00
background-position: left bottom;
2021-04-15 08:49:56 +02:00
}
.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
2021-08-16 08:39:48 +02:00
@import './views/widgets/HotelViewWidgets';