jiti-meet/css/_connection-status.scss

87 lines
1.5 KiB
SCSS
Raw Normal View History

.con-status {
position: absolute;
2020-09-29 11:00:30 +00:00
top: 24px;
width: 100%;
z-index: $toolbarZ + 3;
&-container {
border-radius: 3px;
color: #fff;
font-size: 13px;
2020-09-29 11:00:30 +00:00
line-height: 13px;
margin: 0 auto;
2020-09-29 11:00:30 +00:00
width: 320px;
@include adjust-for-max-width(320px, 8px);
}
&-header {
2020-09-29 11:00:30 +00:00
background: rgba(28, 32, 37, .5);
align-items: center;
display: flex;
justify-content: space-between;
}
&-circle {
border-radius: 50%;
display: inline-block;
padding: 4px;
2020-09-29 11:00:30 +00:00
margin: 8px;
}
&--good {
background: #31B76A;
}
&--poor {
background: #E12D2D;
}
&--non-optimal {
background: #E39623;
}
&-arrow {
2020-09-29 11:00:30 +00:00
height: 36px;
width: 36px;
border-radius: 3px;
margin-left: 8px;
margin-right: 2px;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.16s ease-out;
&--up {
transform: rotate(180deg);
}
&>svg {
cursor: pointer;
}
2020-09-29 11:00:30 +00:00
&:hover {
background-color: rgba(1,1,1, 0.1);
}
}
&-text {
text-align: center;
}
&-details {
2020-09-29 11:00:30 +00:00
background: rgba(28, 32, 37, .5);
border-top: 1px solid #5E6D7A;
padding: 16px;
2020-09-29 11:00:30 +00:00
transition: opacity 0.16s ease-out;
&-visible {
opacity: 1;
}
&-hidden {
opacity: 0;
}
}
}