jellyfin-web/dashboard-ui/css/card.css
Luke Pulverenti 2a830d2a3d update hls
2015-08-28 20:50:39 -04:00

719 lines
12 KiB
CSS

.card {
display: inline-block;
text-align: left;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-o-transition: all 500ms ease;
-ms-transition: all 500ms ease;
transition: all 500ms ease;
position: relative;
}
.card, .card a {
text-decoration: none;
font-weight: 400 !important;
}
.cardOverlayTarget {
position: absolute;
right: 0;
left: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .85);
z-index: 998;
display: none;
line-height: initial;
}
.cardOverlayInner {
padding: 11px 12px 10px;
}
.cardOverlayInner button:last-child {
margin-right: 0 !important;
}
.cardOverlayInner p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.buttonCard:hover .cardBox {
opacity: .6;
}
.cardBox {
margin: 2px;
}
@media all and (max-width: 800px) {
.cardBox {
margin: 1px;
}
}
.largeCardMargin .cardBox {
margin: 10px;
}
.defaultBackground .cardImage {
background-color: #333;
}
.homeTopViews .defaultBackground .cardImage {
background-color: #181818;
}
.homeTopViews .cardImage {
border-radius: 5px;
}
.cardOverlayPlayButton {
position: absolute;
bottom: 0;
right: 0;
color: #333;
}
.cardOverlayPlayButton iron-icon {
width: 20px;
height: 20px;
background-color: rgba(210,210,210,.9);
border-radius: 500px;
padding: 6px;
}
.cardOverlayMoreButton {
position: absolute;
bottom: 0;
right: 0;
color: #333;
}
.cardOverlayMoreButton iron-icon {
width: 20px;
height: 20px;
background-color: rgba(210,210,210,.9);
border-radius: 500px;
padding: 6px;
}
.grayscale {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
filter: grayscale(100%);
}
.bottomPaddedCard .cardBox {
margin-bottom: 24px;
}
.hiddenScrollX .bottomPaddedCard .cardBox {
margin-bottom: 0;
}
.visualCardBox {
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-moz-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
-ms-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
background: #fff;
margin: 7px;
}
.ui-page-theme-b .visualCardBox {
background: rgba(40,40,40,.85);
border-radius: 3px;
}
.cardScalable {
position: relative;
}
.backdropCard .cardPadder, .smallBackdropCard .cardPadder, .overflowBackdropCard .cardPadder {
padding-bottom: 56.25%;
}
.squareCard .cardPadder, .overflowSquareCard .cardPadder {
padding-bottom: 100%;
}
.letterBoxCard .cardPadder {
padding-bottom: 75%;
}
.portraitCard .cardPadder, .overflowPortraitCard .cardPadder {
padding-bottom: 150%;
}
.bannerCard .cardPadder {
padding-bottom: 18.5%;
}
.cardContent {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
/* Needed to keep the cardOverlayTarget from showing outside the bounds while it animates */
overflow: hidden;
}
.cardContent:not(.noHoverEffect):hover .cardImage {
opacity: .5;
}
/*.preview-overlay-container {
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-moz-opacity: 0;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all .25s ease;
-moz-transition: all .25s ease;
-o-transition: all .25s ease;
transition: all .25s ease;
background: rgba(0,0,0,0.4);
cursor: pointer;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}*/
.cardContent .cardFooter {
position: absolute;
bottom: 0;
left: 0;
color: #eee;
padding: 6px 0 2px 0;
max-width: 100%;
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%) !important; /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.7))) !important; /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%) !important; /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%) !important; /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%) !important; /* IE10+ */
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%) !important; /* W3C */
}
.lightCardFooter {
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%) !important; /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.7))) !important; /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%) !important; /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%) !important; /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%) !important; /* IE10+ */
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%) !important; /* W3C */
}
.fullCardFooter {
right: 0;
}
.visualCardBox .outerCardFooter {
padding: 3px;
position: relative;
}
.btnCardOptions {
padding: 10px !important;
margin: 0 !important;
color: inherit;
font-size: 20px;
}
.cardText {
text-overflow: ellipsis;
overflow: hidden;
text-wrap: none;
white-space: nowrap;
padding: 5px 5px 2px;
font-weight: 400;
line-height: 1.4;
}
.homeTopViews .cardText {
font-size: 15px;
padding-top: 10px;
}
.cardButtonContainer {
text-align: right;
float: right;
padding: 5px 0 2px;
}
.cardContent .cardFooter .cardText {
font-size: 14px;
}
.cardOverlayInner {
color: #fff;
}
.cardTextCentered {
text-align: center;
}
.cardDefaultText {
position: absolute;
top: 30%;
left: 0;
right: 0;
text-align: center;
line-height: initial;
}
.cardContent .cardText {
padding: 0 6px 4px 5px;
}
.outerCardFooter .cardText + .cardText {
opacity: .8;
}
.outerCardFooter .cardText:first-child {
padding-top: 7px;
}
@media all and (max-width: 600px) {
.packageReviewText {
display: none;
}
}
.cardImage {
background-size: contain;
background-repeat: no-repeat;
background-position: center bottom;
width: 100%;
height: 100%;
}
.cardImage canvas {
width: 100%;
height: 100%;
}
.coveredCardImage {
background-size: cover;
background-position: center center;
}
.centeredCardImage {
background-position: center center;
}
.iconCardImage {
text-align: center;
position: relative;
}
.iconCardImage iron-icon {
color: rgb(255, 255, 255);
position: absolute;
left: 0;
right: 0;
width: 50%;
height: 50%;
margin: auto;
top: 22%;
}
.bannerCard {
width: 100%;
}
.squareCard {
width: 50%;
}
.backdropCard {
width: 50%;
}
.smallBackdropCard {
width: 50%;
}
.portraitCard {
width: 33.3%;
}
.overflowPortraitCard {
width: 40%;
max-width: 200px;
}
.overflowBackdropCard {
width: 80%;
max-width: 400px;
}
.cardProgress {
line-height: 7px;
}
.cardProgress .itemProgressBar {
height: 7px;
width: 100%;
opacity: .8;
}
.overflowSquareCard {
width: 42%;
}
@media all and (max-width: 420px) {
.backdropCard {
width: 100% !important;
}
}
@media all and (max-width: 1200px) {
.portraitCard .cardOverlayInner {
padding-left: 7px;
padding-right: 7px;
}
}
@media all and (min-width: 500px) {
.smallBackdropCard {
width: 33.3%;
}
.squareCard {
width: 33.3%;
}
}
@media all and (min-width: 640px) {
.portraitCard {
width: 25%;
}
.overflowPortraitCard {
width: 36%;
}
.overflowBackdropCard {
width: 60%;
}
.overflowSquareCard {
width: 30%;
}
}
@media all and (min-width: 700px) {
.bannerCard {
width: 50%;
}
.squareCard {
width: 25%;
}
}
@media all and (min-width: 770px) {
.backdropCard {
width: 33.3%;
}
}
@media all and (min-width: 800px) {
.portraitCard {
width: 20%;
}
.smallBackdropCard {
width: 25%;
}
}
@media all and (min-width: 900px) {
.squareCard {
width: 20%;
}
}
@media all and (min-width: 1000px) {
.smallBackdropCard {
width: 20%;
}
.overflowPortraitCard {
width: 23%;
}
.overflowBackdropCard {
width: 40%;
}
.overflowSquareCard {
width: 22%;
}
}
@media all and (min-width: 1200px) {
.backdropCard {
width: 25%;
}
.squareCard {
width: 16.666666666666666666666666666667%;
}
.bannerCard {
width: 33.3%;
}
.portraitCard {
width: 16.666666666666666666666666666667%;
}
.smallBackdropCard {
width: 16.666666666666666666666666666667%;
}
}
@media all and (min-width: 1400px) {
.squareCard {
width: 14.285714285714285714285714285714%;
}
.portraitCard {
width: 14.285714285714285714285714285714%;
}
.smallBackdropCard {
width: 14.285714285714285714285714285714%;
}
}
@media all and (min-width: 1600px) {
.portraitCard {
width: 12.5%;
}
.smallBackdropCard {
width: 12.5%;
}
}
@media all and (min-width: 1800px) {
.squareCard {
width: 12.5%;
}
.smallBackdropCard {
width: 10%;
}
}
@media all and (min-width: 1920px) {
.squareCard {
width: 11.111111111111111111111111111111%;
}
.backdropCard {
width: 20%;
}
.portraitCard {
width: 11.111111111111111111111111111111%;
}
}
@media all and (min-width: 2200px) {
.bannerCard {
width: 25%;
}
.portraitCard {
width: 10%;
}
}
@media all and (min-width: 2500px) {
.backdropCard {
width: 16.666666666666666666666666666667%;
}
}
/** detailPage169 */
.detailPage169Card .cardPadder {
padding-bottom: 56.25%;
}
.detailPage169Card {
width: 50%;
}
@media all and (min-width: 800px) {
.detailPage169Card {
width: 33.3%;
}
}
@media all and (max-width: 420px) {
.detailPage169Card {
width: 100% !important;
}
}
/** detailPagePortrait */
.detailPagePortraitCard .cardPadder {
padding-bottom: 150%;
}
.detailPagePortraitCard {
width: 33.3%;
}
@media all and (min-width: 540px) {
.detailPagePortraitCard {
width: 25%;
}
}
@media all and (min-width: 800px) {
.detailPagePortraitCard {
width: 20%;
}
}
/** detailPageSquare */
.detailPageSquareCard .cardPadder {
padding-bottom: 100%;
}
.detailPageSquareCard {
width: 33.33%;
}
@media all and (min-width: 540px) {
.detailPageSquareCard {
width: 25%;
}
}
/** homePageSmallBackdropCard */
.homePageSmallBackdropCard .cardPadder {
padding-bottom: 56.25%;
}
.homePageSmallBackdropCard {
width: 50%;
}
@media all and (min-width: 540px) {
.homePageSmallBackdropCard {
width: 33.3%;
}
}
@media all and (min-width: 600px) {
.homePageSmallBackdropCard {
width: 25%;
}
}
@media all and (min-width: 800px) {
.homePageSmallBackdropCard {
width: 20%;
}
}
@media all and (min-width: 1100px) {
.homePageSmallBackdropCard {
width: 16.66666666666667%;
}
}
@media all and (min-width: 1440px) {
.homePageSmallBackdropCard {
width: 12.5%;
}
}
/** horizontalBackdropCard */
.horizontalBackdropCard .cardPadder {
padding-bottom: 56.25%;
}
.horizontalBackdropCard {
width: 75%;
}
@media all and (min-width: 500px) {
.horizontalBackdropCard {
width: 50%;
}
}
@media all and (min-width: 800px) {
.horizontalBackdropCard {
width: 31%;
}
}
.horizontalBackdropCard .cardImage {
border-radius: 4px;
}
.horizontalBackdropCard .cardBox {
margin: 2px !important;
}