192 lines
6.7 KiB
CSS
Executable File
192 lines
6.7 KiB
CSS
Executable File
/* ************** ALLGEMEIN ****************************************
|
|
*****************************************************************/
|
|
|
|
*{
|
|
margin: 0px;
|
|
padding: 0px;
|
|
font-family: Helvetica,Arial, sans-serif;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: black;
|
|
text-decoration: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
html body{
|
|
background: #FFF;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/* ************** LAYOUT ****************************************
|
|
*****************************************************************/
|
|
|
|
#wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: -moz-linear-gradient(top, rgba(0,0,0,0) 80%, rgba(0,0,0,0.65) 100%); /* FF3.6+ */
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(80%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
|
|
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 80%,rgba(0,0,0,0.65) 100%); /* Chrome10+,Safari5.1+ */
|
|
background: -o-linear-gradient(top, rgba(0,0,0,0) 80%,rgba(0,0,0,0.65) 100%); /* Opera 11.10+ */
|
|
background: -ms-linear-gradient(top, rgba(0,0,0,0) 80%,rgba(0,0,0,0.65) 100%); /* IE10+ */
|
|
background: linear-gradient(to bottom, rgba(0,0,0,0) 80%,rgba(0,0,0,0.65) 100%); /* W3C */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
|
|
}
|
|
|
|
#mlibheader{
|
|
width: 100%;
|
|
height: 20%;
|
|
max-height: 100px;
|
|
min-height: 50px;
|
|
line-height: 100px;
|
|
float: left;
|
|
text-align: center;
|
|
font-size: 48px;
|
|
font-weight: 500;
|
|
color: #FFF;
|
|
background: rgb(207,231,250); /* Old browsers */
|
|
background: -moz-linear-gradient(top, rgba(207,231,250,1) 0%, rgba(99,147,193,1) 100%); /* FF3.6+ */
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(207,231,250,1)), color-stop(100%,rgba(99,147,193,1))); /* Chrome,Safari4+ */
|
|
background: -webkit-linear-gradient(top, rgba(207,231,250,1) 0%,rgba(99,147,193,1) 100%); /* Chrome10+,Safari5.1+ */
|
|
background: -o-linear-gradient(top, rgba(207,231,250,1) 0%,rgba(99,147,193,1) 100%); /* Opera 11.10+ */
|
|
background: -ms-linear-gradient(top, rgba(207,231,250,1) 0%,rgba(99,147,193,1) 100%); /* IE10+ */
|
|
background: linear-gradient(to bottom, rgba(207,231,250,1) 0%,rgba(99,147,193,1) 100%); /* W3C */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfe7fa', endColorstr='#6393c1',GradientType=0 ); /* IE6-9 */
|
|
}
|
|
|
|
|
|
#breadcrumb{
|
|
height:10%;
|
|
width: 100%;
|
|
max-height:30px;
|
|
min-height: 10px;
|
|
float:left;
|
|
border-top: 1px solid #ccc;
|
|
border-bottom: 1px solid #ccc;
|
|
background: rgba(155,155,155,1);
|
|
}
|
|
|
|
#contentwrapper {
|
|
padding-top: 1%;
|
|
width: 100%;
|
|
height:50%;
|
|
float:left;
|
|
}
|
|
|
|
#playersec {
|
|
width: 48%;
|
|
float:left;
|
|
margin-right: 2%;
|
|
background: rgb(155,155,155); /* Old browsers */
|
|
background: -moz-linear-gradient(top, rgba(155,155,155,1) 0%, rgba(14,14,14,1) 100%); /* FF3.6+ */
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(155,155,155,1)), color-stop(100%,rgba(14,14,14,1))); /* Chrome,Safari4+ */
|
|
background: -webkit-linear-gradient(top, rgba(155,155,155,1) 0%,rgba(14,14,14,1) 100%); /* Chrome10+,Safari5.1+ */
|
|
background: -o-linear-gradient(top, rgba(155,155,155,1) 0%,rgba(14,14,14,1) 100%); /* Opera 11.10+ */
|
|
background: -ms-linear-gradient(top, rgba(155,155,155,1) 0%,rgba(14,14,14,1) 100%); /* IE10+ */
|
|
background: linear-gradient(to bottom, rgba(155,155,155,1) 0%,rgba(14,14,14,1) 100%); /* W3C */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9b9b9b', endColorstr='#0e0e0e',GradientType=0 ); /* IE6-9 */
|
|
|
|
height:100%;
|
|
max-height: 100%;
|
|
}
|
|
#timeline {
|
|
color: white;
|
|
overflow:auto;
|
|
height: 80%;
|
|
}
|
|
|
|
#timeline section {
|
|
color: white;
|
|
height: auto;
|
|
}
|
|
#player {
|
|
height: 20%;
|
|
}
|
|
|
|
#playerlistsec {
|
|
width: 48%;
|
|
float:left;
|
|
margin-left: 2%;
|
|
overflow:auto;
|
|
}
|
|
|
|
/* ************** NAV ****************************************
|
|
*****************************************************************/
|
|
#playerlistsec.menu {
|
|
list-style-type: none;
|
|
width: 97%;
|
|
}
|
|
#playerlistsec .menu li {
|
|
height: 5%;
|
|
min-height: 50px;
|
|
line-height: 50px;
|
|
list-style-type: none;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
margin-bottom: 1%;
|
|
background: rgb(207,231,250); /* Old browsers */
|
|
background: -moz-linear-gradient(top, rgba(207,231,250,1) 0%, rgba(99,147,193,1) 100%); /* FF3.6+ */
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(207,231,250,1)), color-stop(100%,rgba(99,147,193,1))); /* Chrome,Safari4+ */
|
|
background: -webkit-linear-gradient(top, rgba(207,231,250,1) 0%,rgba(99,147,193,1) 100%); /* Chrome10+,Safari5.1+ */
|
|
background: -o-linear-gradient(top, rgba(207,231,250,1) 0%,rgba(99,147,193,1) 100%); /* Opera 11.10+ */
|
|
background: -ms-linear-gradient(top, rgba(207,231,250,1) 0%,rgba(99,147,193,1) 100%); /* IE10+ */
|
|
background: linear-gradient(to bottom, rgba(207,231,250,1) 0%,rgba(99,147,193,1) 100%); /* W3C */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfe7fa', endColorstr='#6393c1',GradientType=0 ); /* IE6-9 */
|
|
|
|
cursor: pointer;
|
|
float: left;
|
|
|
|
}
|
|
|
|
#playerlistsec .menu li a{
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
#playerlistsec .menu li.select{
|
|
height: 5%;
|
|
min-height: 50px;
|
|
line-height: 50px;
|
|
list-style-type: none;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
margin-bottom: 1%;
|
|
background: rgb(250,207,207); /* Old browsers */
|
|
background: -moz-linear-gradient(top, rgba(250,207,207,1) 0%, rgba(198,99,99,1) 100%); /* FF3.6+ */
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(250,207,207,1)), color-stop(100%,rgba(198,99,99,1))); /* Chrome,Safari4+ */
|
|
background: -webkit-linear-gradient(top, rgba(250,207,207,1) 0%,rgba(198,99,99,1) 100%); /* Chrome10+,Safari5.1+ */
|
|
background: -o-linear-gradient(top, rgba(250,207,207,1) 0%,rgba(198,99,99,1) 100%); /* Opera 11.10+ */
|
|
background: -ms-linear-gradient(top, rgba(250,207,207,1) 0%,rgba(198,99,99,1) 100%); /* IE10+ */
|
|
background: linear-gradient(to bottom, rgba(250,207,207,1) 0%,rgba(198,99,99,1) 100%); /* W3C */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#facfcf', endColorstr='#c66363',GradientType=0 ); /* IE6-9 */
|
|
|
|
cursor: pointer;
|
|
float: left;
|
|
}
|
|
|
|
#sidenav li {
|
|
clear: both;
|
|
display: list-item;
|
|
height: 30px;
|
|
width: 100px;
|
|
margin-left: 50px;
|
|
}
|
|
|
|
footer{
|
|
height: 18%;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
width: 100%;
|
|
float:left;
|
|
margin-top: 1%;
|
|
|
|
}
|
|
footer h3{
|
|
height: auto;
|
|
}
|
|
#epiList{
|
|
overflow: auto;
|
|
}
|
|
|
|
#epiList li{
|
|
height: auto;
|
|
} |