2011-07-31 10:46:29 +02:00
|
|
|
/**
|
2012-04-25 22:48:27 +02:00
|
|
|
* OpenSlides projector view style
|
|
|
|
*
|
|
|
|
* :copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
|
|
|
* :license: GNU GPL, see LICENSE for more details.
|
2011-07-31 10:46:29 +02:00
|
|
|
*/
|
2012-04-25 22:48:27 +02:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
body{
|
|
|
|
margin : 0px;
|
|
|
|
padding-top: 0px;
|
|
|
|
padding-left : 0px;
|
|
|
|
font-family: 'Lucida Grande',"Trebuchet MS",Verdana,sans-serif;
|
2012-04-24 22:27:16 +02:00
|
|
|
font-size : 20px;
|
|
|
|
background-color: #FAFAFB;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*** HEADER ***/
|
|
|
|
#header {
|
|
|
|
position:relative;
|
|
|
|
background:url("../images/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(../images/icons/clock.png) no-repeat scroll 0px 4px;
|
|
|
|
}
|
2012-03-16 12:28:42 +01:00
|
|
|
|
2011-09-03 18:50:47 +02:00
|
|
|
#currentTime.ajax_error {
|
|
|
|
border-bottom: 4px solid red;
|
|
|
|
}
|
2012-04-26 08:52:20 +02:00
|
|
|
#overlay_transparent {
|
|
|
|
background-color: #777777;
|
|
|
|
opacity: 0.6;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2012-04-16 17:14:39 +02:00
|
|
|
#overlays div {
|
2011-11-09 21:16:02 +01:00
|
|
|
}
|
|
|
|
|
2012-04-16 17:14:39 +02:00
|
|
|
#overlay_Countdown {
|
2012-04-26 08:52:20 +02:00
|
|
|
position: absolute;
|
2012-04-16 17:14:39 +02:00
|
|
|
right: 40px;
|
|
|
|
top: 0;
|
2012-04-26 08:52:20 +02:00
|
|
|
font-size: 4em;
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom-left-radius: 0.5em;
|
|
|
|
border-bottom-right-radius: 0.5em;
|
|
|
|
background: #DDD9D9;
|
|
|
|
padding: 0 1em;
|
2012-04-16 17:14:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#overlay_Message {
|
2012-04-26 08:52:20 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 25%;
|
|
|
|
left: 10%;
|
|
|
|
width: 80%;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 0.2em;
|
|
|
|
background: #FFFFFF;
|
|
|
|
font-size: 3.75em;
|
|
|
|
padding: 0.2em 0;
|
2012-04-16 17:14:39 +02:00
|
|
|
}
|
2011-09-03 18:50:47 +02:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
/*** CONTENT ***/
|
2012-04-24 22:27:16 +02:00
|
|
|
#contentwrapper {
|
2011-07-31 10:46:29 +02:00
|
|
|
position:absolute;
|
|
|
|
left:100px;
|
|
|
|
top:150px;
|
|
|
|
right:40px;
|
2011-09-04 00:18:11 +02:00
|
|
|
z-index: -1;
|
2011-07-31 10:46:29 +02:00
|
|
|
}
|
2012-04-24 22:27:16 +02:00
|
|
|
#scrollcontentcontainer {
|
|
|
|
position: relative;
|
|
|
|
margin-top: -11px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2011-07-31 10:46:29 +02:00
|
|
|
.title
|
|
|
|
{
|
|
|
|
position: absolute;
|
|
|
|
top: 58px;
|
|
|
|
left: 100px;
|
|
|
|
font-size: 30px;
|
|
|
|
letter-spacing:4px;
|
|
|
|
color: #FAFAFB;
|
|
|
|
}
|
|
|
|
#sidebar {
|
2012-04-30 08:23:50 +02:00
|
|
|
width: 255px;
|
2011-07-31 10:46:29 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2012-04-30 08:30:04 +02:00
|
|
|
.box .results {
|
|
|
|
font-size: 120%;
|
|
|
|
margin-top: -12px;
|
|
|
|
}
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
/*** Items *** /
|
|
|
|
/* item title centered */
|
|
|
|
.item_fullscreen
|
|
|
|
{
|
|
|
|
position: relative;
|
|
|
|
top: 110px;
|
|
|
|
right:30px;
|
2012-04-24 22:27:16 +02:00
|
|
|
font-size:230%;
|
2011-07-31 10:46:29 +02:00
|
|
|
font-weight:bold;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* items in a list*/
|
|
|
|
.itemlist li
|
|
|
|
{
|
2012-04-24 22:27:16 +02:00
|
|
|
font-size:130%;
|
2011-07-31 10:46:29 +02:00
|
|
|
padding-bottom: 15px;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
.itemlist .closed
|
|
|
|
{
|
|
|
|
color: #9FA9B7;
|
|
|
|
list-style-type: 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;
|
|
|
|
}
|
2011-09-07 23:25:59 +02:00
|
|
|
tr.total td {
|
|
|
|
border-top: 1px solid #333333;
|
|
|
|
background-color: #e3e3e3;
|
2012-04-16 16:35:30 +02:00
|
|
|
}
|