Sengi-Windows-MacOS-Linux/src/app/app.component.scss

197 lines
3.6 KiB
SCSS
Raw Normal View History

2019-03-08 04:33:10 +01:00
@import"variables";
#display-zone {
2019-02-11 02:48:34 +01:00
position: absolute;
top: 0;
right: 0;
bottom: 30px;
left: 50px;
overflow-y: hidden;
overflow-x: auto;
white-space: nowrap;
2018-03-16 01:43:53 +01:00
}
2018-03-16 02:41:25 +01:00
2018-09-10 03:55:16 +02:00
#floating-column {
2019-02-11 02:48:34 +01:00
top: 0;
left: 0;
bottom: 0;
z-index: 9999;
2018-09-10 03:55:16 +02:00
}
2019-02-11 02:48:34 +01:00
#tutorial {
position: relative;
2019-03-08 04:33:10 +01:00
top: 0;
2019-02-11 02:48:34 +01:00
left: 0;
bottom: 0;
z-index: 1;
}
2018-09-10 03:55:16 +02:00
2019-02-25 06:04:09 +01:00
#media-viewer {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
2019-03-08 04:33:10 +01:00
z-index: 9999999;
}
.app {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.drag-and-drop {
transition: all .2s;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
2019-02-25 06:04:09 +01:00
z-index: 99999999;
2019-03-08 04:33:10 +01:00
background: rgba(black, .8);
// opacity: 0.2;
&__on-drag {
opacity: 1;
// background: rgba(black, .7);
}
&__card {
background: $font-link-primary;
background: $column-color;
max-width: 300px;
$card-height: 200px;
height: $card-height;
position: relative;
top: calc(50% - #{$card-height}/2);
margin: auto;
padding: 10px;
border-radius: 5px;
// transform: perspective(1px) translateY(-50%);
// margin-top: calc(50%);
// transform: translateY(50px);
}
&__border {
border: 3px black dashed;
// margin: 50px 50px 0 50px;
height: calc(100%);
}
&__label {
font-size: 17px;
// font-weight: 400;
text-align: center;
height: 100px;
margin: auto;
padding-top: 70px;
}
2019-02-25 06:04:09 +01:00
}
2018-03-16 02:41:25 +01:00
app-streams-selection-footer {
2019-02-11 02:48:34 +01:00
position: absolute;
height: 30px;
right: 0;
bottom: 0;
left: 50px;
2020-02-26 05:55:35 +01:00
}
.auto-update {
transition: all .2s;
2020-02-26 06:02:54 +01:00
transition-timing-function: ease-in;
2020-02-26 05:55:35 +01:00
position: absolute;
2020-05-01 04:11:00 +02:00
height: 50px;
2020-02-26 05:55:35 +01:00
left: 0;
right: 0;
2020-05-01 04:11:00 +02:00
bottom: 0;
//bottom: -80px;
opacity: 0;
2020-02-26 05:55:35 +01:00
z-index: 999999999;
2020-02-26 06:02:54 +01:00
&__activated {
// opacity: 1;
transition: all .25s;
transition-timing-function: ease-out;
2020-05-01 04:11:00 +02:00
opacity: 1;
height: 70px;
2020-02-26 06:02:54 +01:00
}
2020-02-26 05:55:35 +01:00
&__display {
position: relative;
// height: 30px;
width: 300px;
// margin: 0 auto 30px auto;
margin: auto;
border-radius: 2px;
color: rgba(rgb(0, 4, 24), 1);
2020-02-26 06:13:18 +01:00
background: #ffffff;
box-shadow: 0px 0px 10px rgb(0, 0, 0);
2020-02-26 05:55:35 +01:00
&--text {
display: inline-block;
padding: 5px 10px;
}
&--reload {
transition: all .2s;
position: absolute;
2020-02-26 06:13:18 +01:00
right: 30px;
2020-02-26 05:55:35 +01:00
padding: 5px 10px;
text-decoration: none;
2020-02-26 06:13:18 +01:00
color: #ffffff;
background-color: #3e455f;
2020-02-26 05:55:35 +01:00
&:hover {
2020-02-26 06:13:18 +01:00
background-color: #1d202c;
2020-02-26 05:55:35 +01:00
}
}
&--close {
transition: all .2s;
position: absolute;
right: 0;
display: inline-block;
padding: 5px 10px;
text-decoration: none;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
2020-02-26 06:13:18 +01:00
color: #ffffff;
background-color: #3e455f;
2020-02-26 05:55:35 +01:00
&:hover {
2020-02-26 06:13:18 +01:00
background-color: #1d202c;
2020-02-26 05:55:35 +01:00
}
}
}
}
.enhanced-tutorial {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
2020-09-12 05:13:00 +02:00
background-color: rgba(0,0,0,0.9);
z-index: 9999999;
opacity: 0;
transition: all .4s;
&__visible {
opacity: 1;
}
&__content {
display: block;
padding: 25px;
width: calc(100%);
height: calc(100%);
}
2019-02-11 02:48:34 +01:00
}