30 lines
569 B
CSS
30 lines
569 B
CSS
.playerBody {
|
|
background: $white;
|
|
/* border-radius: 3px; */
|
|
/* padding: 10px 10px 5px 10px; */
|
|
/* box-shadow: 0px 2px 10px 0 $gray-light; */
|
|
height: 100%;
|
|
/* border: solid thin $gray-light; */
|
|
border-right: solid thin $gray-light;
|
|
}
|
|
|
|
.screenWrapper {
|
|
width: 100%;
|
|
position: relative;
|
|
height: 100%;
|
|
/* border: solid thin $gray-light; */
|
|
/* border-radius: 3px; */
|
|
overflow: hidden;
|
|
background: $gray-lightest;
|
|
}
|
|
|
|
.disconnected {
|
|
font-size: 40px;
|
|
font-weight: 200;
|
|
color: $gray-medium;
|
|
}
|
|
|
|
.playerView {
|
|
position: relative;
|
|
flex: 1;
|
|
}
|