1
0
mirror of https://github.com/dani/vroom.git synced 2024-07-05 09:55:43 +02:00
vroom/public/css/vroom.css

227 lines
3.4 KiB
CSS
Raw Normal View History

2014-04-03 17:42:54 +02:00
#webRTCVideo {
overflow-y: auto;
}
#webRTCVideo video {
width: 100%;
height: auto;
}
#webRTCVideo .selected {
box-shadow: 0px 0px 2pt 2pt red;
}
#mainVideo{
margin-right: auto;
margin-left: auto;
text-align: center;
}
#mainVideo video {
max-width: 100%;
min-width: 75%;
height: auto;
}
.previewContainer{
margin-top: 5px;
margin-bottom: 5px;
}
.previewContainer:nth-child(2n+1){
clear: left;
}
.volumeBar {
position: absolute;
width: 5px;
height: 0px;
right: 0px;
bottom: 0px;
background-color: #12acef;
}
.muted {
position: absolute;
right: 20px;
top: 0px;
}
.muted:before{
font-family: 'Glyphicons Halflings';
font-size: 2em;
color: red;
content: "\e036";
2014-04-03 17:42:54 +02:00
}
.paused{
position: absolute;
right: 56px;
top: 0px;
}
.paused:before{
font-family: 'Glyphicons Halflings';
color: red;
font-size: 2em;
content: "\e106";
}
.owner{
position: absolute;
left: 20px;
top: 0px;
}
.owner:before{
font-family: 'Glyphicons Halflings';
color: red;
font-size: 2em;
2014-05-18 20:09:19 +02:00
content: "\e124";
2014-04-03 17:42:54 +02:00
}
.displayName {
text-align: center;
font-weight: bold;
border-radius: 8px;
word-wrap: break-word;
padding-right: 5px;
padding-left: 5px;
padding-top: 2px;
padding-bottom: 2px;
}
#createRoomContainer {
2014-05-09 18:45:10 +02:00
max-width: 700px;
2014-05-02 20:52:24 +02:00
margin: auto;
2014-04-03 17:42:54 +02:00
}
#feedbackFormContainer {
max-width: 700px;
margin: auto;
}
#roomToolBar {
overflow: visible !important;
}
2014-05-09 16:49:00 +02:00
#inviteMenu {
min-width: 400px;
}
2014-05-12 21:57:54 +02:00
#confMenu {
min-width: 400px;
}
#authMenu {
min-width: 400px;
}
.ownerEl {
display: none;
}
.unauthEl{
display: none;
}
.ownerActions {
position: absolute;
left: 15px;
top: 0px;
display: none;
}
.actionMute:before{
font-family: 'Glyphicons Halflings';
color: red;
content: "\e036";
}
.actionPause:before{
font-family: 'Glyphicons Halflings';
color: red;
content: "\e106";
}
.actionKick:before{
font-family: 'Glyphicons Halflings';
color: red;
2014-05-18 20:08:57 +02:00
content: "\e083";
}
#emailNotificationList {
padding-right: 12px;
padding-left: 12px;
}
2014-04-03 17:42:54 +02:00
#chatBox {
max-height:300px;
resize:none;
}
#chatContainer {
width: 600px;
}
#chatHistory{
width: 100%;
height: 200px;
overflow: auto;
}
.chatMsgContainer {
margin-right: 3px;
margin-left: 3px;
}
.chatMsg {
max-width: 75%;
border-radius: 8px;
margin-top: 2px;
margin-bottom: 2px;
word-wrap: break-word;
padding-right: 5px;
padding-left: 5px;
padding-top: 2px;
padding-bottom: 2px;
white-space: pre;
}
2014-04-04 16:31:53 +02:00
.chatMsg a {
color: black;
}
2014-04-03 17:42:54 +02:00
.chatMsgSelf {
float: right;
}
.chatMsgOthers {
float: left;
}
#chatMenu {
margin-bottom: 15px;
}
#chromeExtMessage {
text-align: center;
}
2014-05-02 19:17:49 +02:00
#navBarLogo {
2014-05-02 21:56:08 +02:00
padding-top: 2px;
2014-05-04 01:35:59 +02:00
float: left;
position: absolute;
2014-05-02 19:17:49 +02:00
}
2014-05-02 20:52:24 +02:00
#toolBar {
2014-05-04 01:35:59 +02:00
padding-top: 15px;
margin-right: 100px;
min-height: 60px;
2014-05-02 21:56:08 +02:00
}
#forkMeRibbon {
position: absolute;
top: 0;
right: 0;
border: 0;
width: 149px;
height: 149px;
2014-05-02 20:52:24 +02:00
}
2014-05-09 18:45:10 +02:00
.panelIndex {
text-align: justify;
text-justify:inter-word;
}
.modal-body {
text-align: justify;
text-justify:inter-word;
}
2014-05-15 16:16:05 +02:00
html,
body {
height: 100%;
}
#wrap {
min-height: 100%;
height: auto;
margin: 0 auto -50px;
padding: 0 0 50px;
}
#footerContainer{
height: 50px;
background-color: #F8F8F8;
border-top: solid #E7E7E7 2px;
}
.footer{
padding-top: 10px;
}
@media screen and (max-width: 480px) {
body {
font-size: 0.8em;
}
}
@media screen and (max-width: 768px) {
body {
font-size: 0.9em;
}
}