jellyfin-web/dashboard-ui/css/posteritem.css

190 lines
3.1 KiB
CSS
Raw Normal View History

2013-04-25 16:28:01 -07:00
.posterItem {
margin: 3px;
text-shadow: none;
font-weight: normal!important;
display: inline-block;
font-size: 14px;
position: relative;
color: #fff;
text-decoration: none;
text-align: left;
overflow: hidden;
}
.posterItem:hover {
-moz-box-shadow: 0 0 20px 3px #2572EB;
-webkit-box-shadow: 0 0 20px 3px #2572EB;
box-shadow: 0 0 20px 3px #2572EB;
}
.posterItemImage {
2013-04-25 17:52:55 -07:00
background-size: 100% auto;
2013-04-25 16:28:01 -07:00
background-repeat: no-repeat;
background-position: center bottom;
}
.defaultPosterItemImage {
background-color: #999;
}
.posterItemText {
text-overflow: ellipsis;
overflow: hidden;
text-wrap: none;
white-space: nowrap;
padding: 4px 5px 4px;
background: #181818;
text-shadow: none;
}
2013-04-25 17:52:55 -07:00
.posterItemTextCentered {
text-align: center;
}
.posterItemText + .posterItemText {
padding-top: 2px;
}
.posterItemDefaultText {
position: absolute;
top: 30%;
left: 0;
right: 0;
text-align: center;
}
2013-04-25 16:28:01 -07:00
.squarePosterItem {
2013-04-25 17:52:55 -07:00
width: 160px;
2013-04-25 16:28:01 -07:00
}
.squarePosterItem .posterItemImage {
2013-04-25 17:52:55 -07:00
height: 160px;
2013-04-25 16:28:01 -07:00
}
.backdropPosterItem {
width: 160px;
}
.backdropPosterItem .posterItemImage {
height: 90px;
}
2013-04-25 17:52:55 -07:00
.portraitPosterItem {
width: 100px;
}
.portraitPosterItem .posterItemImage {
height: 150px;
}
@media all and (min-width: 750px) {
.backdropPosterItem {
width: 192px;
}
.backdropPosterItem .posterItemImage {
height: 108px;
}
.squarePosterItem {
width: 160px;
}
.squarePosterItem .posterItemImage {
height: 160px;
}
.portraitPosterItem {
width: 110px;
}
.portraitPosterItem .posterItemImage {
height: 165px;
}
}
@media all and (min-width: 1200px) {
.backdropPosterItem {
width: 272px;
}
.backdropPosterItem .posterItemImage {
height: 153px;
}
.squarePosterItem {
width: 160px;
}
.squarePosterItem .posterItemImage {
height: 160px;
}
.portraitPosterItem {
width: 100px;
}
.portraitPosterItem .posterItemImage {
height: 150px;
}
.posterItem {
font-size: 15px;
}
}
@media all and (min-width: 1440px) {
.squarePosterItem {
width: 170px;
}
.squarePosterItem .posterItemImage {
height: 170px;
}
.portraitPosterItem {
width: 112px;
}
.portraitPosterItem .posterItemImage {
height: 168px;
}
}
@media all and (min-width: 1920px) {
.backdropPosterItem {
width: 304px;
}
.backdropPosterItem .posterItemImage {
height: 171px;
}
.squarePosterItem {
width: 185px;
}
.squarePosterItem .posterItemImage {
height: 185px;
}
.portraitPosterItem {
width: 126px;
}
.portraitPosterItem .posterItemImage {
height: 189px;
}
.posterItem {
font-size: 16px;
}
}