Skip to content
Snippets Groups Projects
Select Git revision
  • c5166e8eae24ff5ba993b3b3d585ea78e2adaee9
  • master default
2 results

mediarack.css

Blame
  • mediarack.css 2.12 KiB
    html { 
    	overflow: -moz-scrollbars-vertical; 
    	overflow: scroll; 
    	/* overflow-y: scroll; *doesnt work with firefox*/ 
    }
    
    body {
    	padding-top: 70px;
    }
    
    .show {
    	margin-bottom: 50px;
    	min-height: 200px;
    }
    
    .showName.panel-heading,
    .movieName.panel-heading {
    	min-height: 71px;
    	height: 71px;
    }
    
    .showLogo, 
    .movieLogo {	
    	display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    #shows .thumbnail {
    	min-height: 230px;
    	height: 230px;
    }
    
    .thumbnail  img.showPoster {
    	min-height: 220px;
    	height: 220px;
    }
    
    table.episodes {
    	margin-top: 10px;
    }
    
    table.episodes  tr td{
    	font-weight: bold;
    }
    
    .panel-title {
    	font-weight: bold;
    }
    
    div.panel-body {
    	/* background: url('../img/no_fanart.jpg') repeat-y top center; */
    	background-size: 100% auto;
    }
    
    div#shows, div#movies {
    	display: none;
    }
    
    ul#latestShows li {
    	text-align: center;
    }
    
    div.epLabel {
    	margin-top: 5px;
    	font-size: 8pt;
    	font-weight: bold;
    	line-height: 15px;
    }
    
    .jcarousel-wrapper {
        position: relative;
    	width: 1000px;
    	margin-left: auto;
    	margin-right: auto;
    }
    
    /** Carousel **/
    
    .jcarousel {
        position: relative;
        overflow: hidden;
        width: 1000px;
    }
    
    .jcarousel ul {
        width: 20000em;
        position: relative;
        list-style: none;
        margin: 0;
        padding: 0;
    	text-align: center;
    }
    
    .jcarousel li {
        float: left;
    	width: 200px;
    	margin: 10px 0;
    }
    
    /** Carousel Controls **/
    
    .jcarousel-control-prev,
    .jcarousel-control-next {
        position: absolute;
        top: 100px;
        width: 30px;
        height: 30px;
        text-align: center;
        background: #4E443C;
        color: #fff;
        text-decoration: none;
        text-shadow: 0 0 1px #000;
        font: 24px/27px Arial, sans-serif;
        -webkit-border-radius: 30px;
           -moz-border-radius: 30px;
                border-radius: 30px;
        -webkit-box-shadow: 0 0 2px #999;
           -moz-box-shadow: 0 0 2px #999;
                box-shadow: 0 0 2px #999;
    }
    
    .jcarousel-control-prev {
        left: -50px;
    }
    
    .jcarousel-control-next {
        right: -50px;
    }
    
    .jcarousel-control-prev:hover span,
    .jcarousel-control-next:hover span {
        display: block;
    }
    
    .jcarousel-control-prev.inactive,
    .jcarousel-control-next.inactive {
        opacity: .5;
        cursor: default;
    }