bigbluebutton-Github/bigbluebutton-html5/app/client/stylesheets/whiteboard.less

83 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-02-22 07:50:47 +08:00
@import "variables";
#whiteboard {
@media @landscape {
-webkit-flex: 7 7 70%;
-moz-flex: 7 7 70%;
-ms-flex: 7 7 70%;
flex: 7 7 70%;
height: 100%;
}
padding-bottom: 5px;
2015-02-22 07:50:47 +08:00
}
#whiteboard-paper {
background-color: white !important;
/*height: auto !important;*/
margin-left: auto;
margin-right: auto;
width: 100%;
2015-02-22 07:50:47 +08:00
#svggroup {
display: block;
height: 100% !important;
width: 100% !important;
}
}
#whiteboard-navbar {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
}
#whiteboard-container {
@media @landscape {
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: -webkit-flex;
display: flex;
align-items: center;
-webkit-align-items: center;
-ms-align-items: center;
height: calc(~'99% - 39px');
}
}
.fullscreenWhiteboardButton {
float: right;
padding: 0;
@media @landscape {
margin-right: 5px;
width: 31px;
height: 31px;
}
@media @mobile-portrait-with-keyboard, @mobile-portrait {
margin-right: 10px;
width: 78px;
height: 78px;
}
i {
@media @mobile-portrait-with-keyboard, @mobile-portrait {
font-size: 75px;
}
@media @landscape {
font-size: 28px;
}
}
}
2015-05-07 03:45:51 +08:00
.presentationNavigationControls {
width:54px;
font-size:28px;
float:right;
margin-right:90px;
2015-05-07 03:45:51 +08:00
}
.vertically-centered {
position: relative;
top: 50%;
transform: translateY(-50%);
}