d8d2ad002a
- rename static subdirs to css and js - move global static dir to core/static, changed - move global templates dir to core/templates - check comments and code style of all our own CSS and JS files - minor changes related to the changes of template and static files
33 lines
502 B
CSS
33 lines
502 B
CSS
/*
|
|
* Styles for projector slides of mediafile app
|
|
*
|
|
*/
|
|
|
|
|
|
/*** PDF presentation ***/
|
|
.canvas-container {
|
|
width: 100%;
|
|
text-align:center;
|
|
}
|
|
#presentation {
|
|
position: relative;
|
|
left:-75px;
|
|
top: -77px;
|
|
}
|
|
#presentation.fullscreen {
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
.fullscreen {
|
|
z-index: 1000!important;
|
|
left: 0!important;
|
|
top: 0!important;
|
|
right: 0!important;
|
|
background-color: #000000;
|
|
}
|
|
#footer.black {
|
|
display: none;
|
|
}
|
|
body.black {
|
|
background-color: #000000;
|
|
} |