17 lines
309 B
CSS
17 lines
309 B
CSS
|
/*
|
||
|
Hides the sidebar and makes the content use the full width like the video player.
|
||
|
Also removes the hideous black background when using theater mode.
|
||
|
*/
|
||
|
|
||
|
#watch7-content {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
#watch7-sidebar {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.watch-stage-mode #theater-background {
|
||
|
background-color: transparent;
|
||
|
}
|