jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/card.css
2016-08-30 02:06:24 -04:00

574 lines
9.5 KiB
CSS

.card {
border: 0;
font-size: inherit !important;
font-family: inherit !important;
text-transform: none;
background-color: transparent !important;
background: none !important;
margin: 0;
padding: 0;
display: block;
color: inherit !important;
outline: none !important;
cursor: pointer;
contain: style;
flex-shrink: 0;
font-weight: inherit !important;
}
.itemsContainer {
display: flex;
}
.vertical-list {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
}
.vertical-wrap {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.vertical-wrap.centered {
justify-content: center;
}
.vertical-wrap > .card {
contain: layout style;
}
.cardScalable {
position: relative;
}
.cardPadder-backdrop, .cardPadder-smallBackdrop, .cardPadder-overflowBackdrop {
padding-bottom: 56.25%;
}
.cardPadder-square, .cardPadder-overflowSquare {
padding-bottom: 100%;
}
.cardPadder-portrait, .cardPadder-overflowPortrait {
padding-bottom: 150%;
}
.cardPadder-banner {
padding-bottom: 18.5%;
}
.cardBox {
padding: 0 !important;
margin: 0;
transition: none;
border: 3px solid transparent;
/* Needed in case cardBox is a button */
background-color: transparent;
}
.cardBox-focustransform {
will-change: transform;
/*transition: transform 200ms ease-out;*/
}
/*.card:focus > .cardBox-focustransform {
transition-delay: 50ms;
transform: scale(1.16, 1.16);
}*/
@media all and (min-width: 600px) {
.cardBox-mobile {
margin: 3px;
}
}
.card:focus {
position: relative !important;
z-index: 10 !important;
font-weight: inherit !important;
}
.card:focus .cardBox {
border-color: transparent;
}
.cardBox-bottompadded {
margin-bottom: 1em;
}
.btnCardOptions {
text-align: right;
float: right;
padding: 5px 0 2px;
margin: 0 !important;
}
.mediaSourceIndicator {
display: flex;
position: absolute;
align-items: center;
justify-content: center;
top: .3em;
left: .3em;
text-align: center;
vertical-align: middle;
width: 24px;
height: 24px;
border-radius: 50%;
color: #fff;
background: rgb(51, 136, 204);
}
.cardImageContainer {
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
display: -ms-flex;
display: -webkit-flex;
display: flex;
align-items: center;
justify-content: center;
position: relative;
background-clip: content-box !important;
color: #fff;
/* This is only needed for scalable cards */
height: 100%;
}
@media all and (min-width: 600px) {
.cardImageContainer {
/* Should be 0 with visualCardBox, but not really noticeable */
border-radius: 2px;
}
}
.chapterCardImageContainer {
background-color: #000;
border-radius: 0;
}
.cardImageContainer-button {
border: 0;
padding: 0;
background-color: transparent;
box-sizing: content-box;
outline: none !important;
cursor: pointer;
}
/* Used by non-scalable cards */
.forceRelative {
position: relative;
}
.cardContent {
overflow: hidden;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
/* Needed in case this is a button */
display: block;
}
.cardImage {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: contain;
background-repeat: no-repeat;
background-position: center bottom;
}
.coveredImage {
background-size: 100% 100%;
background-position: center center;
}
.coveredImage-noScale {
background-size: cover;
}
.cardFooter {
padding: .5em .3em;
}
.visualCardBox-cardScalable, .visualCardBox-cardFooter {
background-color: #222326;
}
.visualCardBox-cardFooter {
border-bottom-left-radius: 2px;
border-bottom-right-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);
}
.innerCardFooter {
background: rgba(0,0,0,.7);
position: absolute;
bottom: 0;
left: 0;
text-align: left;
z-index: 1;
overflow: hidden;
max-width: 100%;
color: #fff;
}
.innerCardFooterClear {
background-color: transparent;
}
.fullInnerCardFooter {
right: 0;
}
.cardText {
padding: .35em .5em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: inherit;
}
.cardTextCentered {
text-align: center;
}
.cardText-secondary {
opacity: .6;
}
.cardCenteredText {
white-space: normal;
}
.cardImageIcon {
width: 12vh;
height: 12vh;
font-size: 12vh;
color: #fff;
}
.cardIndicators {
right: 2.5%;
top: 2.5%;
position: absolute;
display: flex;
align-items: center;
}
.portraitCardIndicators {
right: 3%;
top: 2%;
}
.backdropCardIndicators {
right: 1.5%;
top: 2.8%;
}
.cardOverlayButton {
color: #fff !important;
background-color: rgba(0,0,0,.7) !important;
border-radius: 500px;
position: absolute;
bottom: 0;
right: 0;
margin: 0 .35em .5em 0;
z-index: 1;
}
.cardOverlayButton:hover {
background-color: rgba(0,0,0,.9) !important;
transition: background-color .5s ease-out;
}
.defaultCardColor1 {
background-color: #009688;
}
.defaultCardColor2 {
background-color: #D32F2F;
}
.defaultCardColor3 {
background-color: #0288D1;
}
.defaultCardColor4 {
background-color: #388E3C;
}
.defaultCardColor5 {
background-color: #F57F17;
}
.bannerCard-scalable {
width: 100%;
}
.backdropCard-scalable {
width: 100%;
}
.smallBackdropCard-scalable {
width: 50%;
}
.midBackdropCard-scalable {
width: 50%;
}
.squareCard-scalable {
width: 50%;
}
.portraitCard-scalable {
width: 33.333333333333333333333333333333%;
}
.overflowPortraitCard-scalable {
width: 40%;
max-width: 200px;
}
.overflowBackdropCard-scalable {
width: 84%;
max-width: 400px;
}
.overflowSquareCard-scalable {
width: 42%;
}
@media all and (min-width: 420px) {
.backdropCard-scalable {
width: 50%;
}
.midBackdropCard-scalable {
width: 50%;
}
}
@media all and (min-width: 500px) {
.smallBackdropCard-scalable {
width: 33.333333333333333333333333333333%;
}
.squareCard-scalable {
width: 33.333333333333333333333333333333%;
}
}
@media all and (min-width: 640px) {
.portraitCard-scalable {
width: 25%;
}
.overflowPortraitCard-scalable {
width: 36%;
}
.overflowBackdropCard-scalable {
width: 60%;
}
.overflowSquareCard-scalable {
width: 30%;
}
.midBackdropCard-scalable {
width: 33.333333333333333333333333333333%;
}
}
@media all and (min-width: 700px) {
.squareCard-scalable {
width: 25%;
}
}
@media all and (min-width: 770px) {
.backdropCard-scalable {
width: 33.333333333333333333333333333333%;
}
}
@media all and (min-width: 800px) {
.bannerCard-scalable {
width: 50%;
}
.portraitCard-scalable {
width: 20%;
}
.smallBackdropCard-scalable {
width: 25%;
}
}
@media all and (min-width: 900px) {
.squareCard-scalable {
width: 20%;
}
.midBackdropCard-scalable {
width: 25%;
}
}
@media all and (min-width: 1000px) {
.smallBackdropCard-scalable {
width: 20%;
}
.overflowPortraitCard-scalable {
width: 23%;
}
.overflowBackdropCard-scalable {
width: 40%;
}
.overflowSquareCard-scalable {
width: 22%;
}
}
@media all and (min-width: 1200px) {
.backdropCard-scalable {
width: 25%;
}
.squareCard-scalable {
width: 16.666666666666666666666666666667%;
}
.bannerCard-scalable {
width: 33.333333333333333333333333333333%;
}
.portraitCard-scalable {
width: 16.666666666666666666666666666667%;
}
.smallBackdropCard-scalable {
width: 16.666666666666666666666666666667%;
}
.midBackdropCard-scalable {
width: 20%;
}
}
@media all and (min-width: 1400px) {
.squareCard-scalable {
width: 14.285714285714285714285714285714%;
}
.portraitCard-scalable {
width: 14.285714285714285714285714285714%;
}
.smallBackdropCard-scalable {
width: 14.285714285714285714285714285714%;
}
}
@media all and (min-width: 1600px) {
.portraitCard-scalable {
width: 12.5%;
}
.smallBackdropCard-scalable {
width: 12.5%;
}
}
@media all and (min-width: 1800px) {
.squareCard-scalable {
width: 12.5%;
}
.smallBackdropCard-scalable {
width: 10%;
}
}
@media all and (min-width: 2100px) {
.squareCard-scalable {
width: 11.111111111111111111111111111111%;
}
.backdropCard-scalable {
width: 20%;
}
.portraitCard-scalable {
width: 11.111111111111111111111111111111%;
}
}
@media all and (min-width: 2200px) {
.bannerCard-scalable {
width: 25%;
}
.portraitCard-scalable {
width: 10%;
}
}
@media all and (min-width: 2500px) {
.backdropCard-scalable {
width: 16.666666666666666666666666666667%;
}
}
.layout-tv .backdropCard-scalable {
width: 25%;
}
.layout-tv .squareCard-scalable {
width: 16.66666666666666667%;
}
.layout-tv .portraitCard-scalable {
width: 16.66666666666666667%;
}
.layout-tv .personCard-scalable {
width: 14.285714285714285714285714285714%;
}