157 lines
3.8 KiB
SCSS
157 lines
3.8 KiB
SCSS
![]() |
@import "mixin";
|
||
|
@import "properties";
|
||
|
|
||
|
.modal-body.modal-newcomer {
|
||
|
display: flex!important;
|
||
|
flex-direction: column!important;
|
||
|
justify-content: stretch!important;
|
||
|
|
||
|
padding: 0!important;
|
||
|
|
||
|
min-width: 20em;
|
||
|
width: 50em;
|
||
|
|
||
|
@include user-select(none);
|
||
|
|
||
|
.container-header {
|
||
|
flex-shrink: 0;
|
||
|
flex-grow: 0;
|
||
|
|
||
|
color: #565656;
|
||
|
padding: .5em .5em .25em;
|
||
|
|
||
|
position: relative;
|
||
|
font-size: 1.5em;
|
||
|
text-transform: uppercase;
|
||
|
|
||
|
.step {
|
||
|
&.hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
|
||
|
&::after {
|
||
|
content: ' ';
|
||
|
position: absolute;
|
||
|
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
|
||
|
height: 1.25px;
|
||
|
//background: linear-gradient(90deg, rgba(49,49,53,1) 80%, rgba(49,49,53,0) 100%);
|
||
|
background: rgba(49,49,53,1);
|
||
|
}
|
||
|
|
||
|
&.hidden {
|
||
|
&::after {
|
||
|
content: unset;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.container-body {
|
||
|
//flex-grow: 1;
|
||
|
//flex-shrink: 1;
|
||
|
flex-shrink: 1;
|
||
|
min-height: 18em;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
|
||
|
overflow: auto;
|
||
|
@include chat-scrollbar-horizontal();
|
||
|
@include chat-scrollbar-vertical();
|
||
|
|
||
|
.body {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: stretch;
|
||
|
|
||
|
padding: .5em .5em .5em;
|
||
|
|
||
|
&.height-transition {
|
||
|
@include transition(max-height .25s ease-in-out, min-height .25s ease-in-out);
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.step {
|
||
|
&.step-welcome, &.step-finish {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: stretch;
|
||
|
|
||
|
.text {
|
||
|
align-self: center;
|
||
|
h1 {
|
||
|
line-height: 1.1em;
|
||
|
|
||
|
margin-bottom: .8em;
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
flex-shrink: 0;
|
||
|
}
|
||
|
|
||
|
&.step-welcome h1 {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
max-height: 15em;
|
||
|
max-width: 15em;
|
||
|
|
||
|
align-self: center;
|
||
|
margin-right: 1em;
|
||
|
|
||
|
img {
|
||
|
max-height: 100%;
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* for step-identity or step-microphone */
|
||
|
.container-settings-identity-profile, .container-settings-audio-microphone {
|
||
|
padding: .5em;
|
||
|
|
||
|
.left .body {
|
||
|
// background-color: #19191b;
|
||
|
background-color: hsla(220, 4%, 13%, 1);
|
||
|
.overlay {
|
||
|
background-color: hsla(220, 4%, 13%, 1);
|
||
|
|
||
|
}
|
||
|
.profile.selected {
|
||
|
background-color: hsla(240, 2%, 8%, 1);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.step-identity {
|
||
|
}
|
||
|
|
||
|
&.step-microphone {
|
||
|
}
|
||
|
|
||
|
&.hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.buttons {
|
||
|
flex-shrink: 0;
|
||
|
flex-grow: 0;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-between;
|
||
|
|
||
|
border-top: 1.25px solid rgba(49,49,53,1);
|
||
|
padding: .5em;
|
||
|
}
|
||
|
}
|