OpenSlides/openslides/projector/static/styles/projector.css
Emanuel Schuetze abad75c129 A lot of template improvements and translation fixes
- Fixed agenda widget for special slide views (e.g. list of speakers, summary).
- Fixed back to motion(s) link
- Set icon for list of speakers widget.
- Fixed overlay widget layout of form elements.
- Added submenu with other config_pages to version.html.
- Updated completly DE translations, fixed EN strings.
- Coding style: Use correct ugettext and ugettext_lazy strings. Use "as _" for ugettext only.
Updated translation.
- Improved projector template (clock image, fixed facicon, added subtitle for list of speakers)
- Changed permission strings ('oneself'). Added check if group(pk=3) exists.
- Added event name and description to base template. Some minor template layout fixes.
- Use static subtile (no context var). Show last 2 old_speakers for projector.
- Cut old_speakers.
- Projektor template style changes (e.g. overlay list of speakers).
2013-04-24 10:38:03 +02:00

202 lines
3.6 KiB
CSS

/**
* OpenSlides projector view style
*
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
* :license: GNU GPL, see LICENSE for more details.
*/
body{
margin : 0px;
padding-top: 0px;
padding-left : 0px;
font-family: 'Lucida Grande',"Trebuchet MS",Verdana,sans-serif;
font-size : 20px;
background-color: #FAFAFB;
overflow: hidden;
}
/*** HEADER ***/
#header {
position:relative;
background:url("../img/presentation-header-bg.png") repeat-x scroll center top #3D3020;
height:100px;
}
#logo {
position:absolute;
top: 15px;
left: 100px;
}
.event_name {
position:absolute;
text-align:right;
top: 10px;
right: 40px;
font-size:42px;
font-weight:bold;
color: #ffffff;
}
.event_description {
position:absolute;
text-align:right;
top:60px;
right:40px;
font-size:17px;
color: #cfcfcf;
}
#ajaxswitcher {
height: 20px;
padding: 5px;
position: fixed;
z-index: 100;
display: none;
}
#currentTime {
border:0 solid #000000;
font-size:24px;
position:absolute;
text-align:right;
top:110px;
right:40px;
padding-left:30px;
background: url(../img/glyphicons_054_clock_big.png) no-repeat scroll 0px 4px;
}
#currentTime.ajax_error {
border-bottom: 4px solid red;
}
#overlay_transparent {
background-color: #777777;
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#overlay_list_of_speaker_box {
position: fixed;
bottom: 0;
right: 0;
border-radius: 0.4em;
border: 0.1em solid #777777;
background-color: #cccccc;
opacity: 0.9;
padding: 0 1em;
margin: 1em;
z-index: 2;
width: 50%;
}
/*** CONTENT ***/
#contentwrapper {
position:absolute;
left:100px;
top:150px;
right:40px;
z-index: -1;
}
#scrollcontentcontainer {
position: relative;
margin-top: -11px;
overflow: hidden;
}
.title
{
position: absolute;
top: 58px;
left: 100px;
font-size: 30px;
letter-spacing:4px;
color: #FAFAFB;
}
#sidebar {
width: 255px;
float: right;
margin: 0 0 20px 10px;
}
.box {
border:1px solid #808080;
padding: 0px 10px 10px 10px;
}
.box h4 {
margin-bottom: 5px;
margin-top: 10px;
color: #333333;
font-weight: normal;
text-transform: uppercase;
}
.box .results {
font-size: 120%;
margin-top: -12px;
}
/*** Items *** /
/* item title centered */
.item_fullscreen
{
position: relative;
top: 110px;
right:30px;
font-size:230%;
font-weight:bold;
text-align: center;
}
.item_fullscreen span
{
font-size: 50%; font-weight:normal;
}
/* items in a list*/
.itemlist li
{
font-size:130%;
padding-bottom: 15px;
list-style-type: none;
}
.itemlist .closed
{
color: #9FA9B7;
list-style-type: none;
}
.list_of_speakers li {
font-size: 130%;
line-height: 160%;
}
.last_speakers li {
color: #9FA9B7;
list-style: none;
}
/* Table */
table {
border-collapse:collapse;
border-color:#CCCCCC -moz-use-text-color #CCCCCC #CCCCCC;
border-style:solid none solid solid;
border-width:1px medium 1px 1px;
margin:0;
border-spacing:0px;
}
table th {
border-right:1px solid #CCCCCC;
color:#333333;
font-weight:normal;
padding:10px 10px 10px 10px;
text-align:left;
text-transform:uppercase;
}
table tr.odd td {
background:none repeat scroll 0 0 #F1F1F1;
}
table td {
background:none repeat scroll 0 0 #F7F7F7;
border-right:1px solid #CCCCCC;
line-height:120%;
padding: 10px 10px;
vertical-align:middle;
}
tr.total td {
border-top: 1px solid #333333;
background-color: #e3e3e3;
}