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

80 lines
1.4 KiB
CSS
Raw Normal View History

2013-05-03 12:34:25 -07:00
.tileItem {
2015-07-29 10:16:00 -07:00
padding: 5px 7px 5px 0;
font-weight: normal !important;
2013-05-03 12:34:25 -07:00
display: block;
position: relative;
2013-12-22 10:16:24 -07:00
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-o-transition: all 500ms ease;
-ms-transition: all 500ms ease;
transition: all 500ms ease;
2015-10-12 23:31:20 -07:00
color: inherit!important;
2013-05-03 12:34:25 -07:00
}
.tileItem .starRating {
2013-05-05 20:58:45 -07:00
width: 16px;
height: 14px;
}
.tileItem .rottentomatoesicon {
height: 14px;
width: 14px;
}
.tileItem .criticRating {
position: relative;
2013-11-27 12:04:19 -07:00
top: -2px;
2013-05-03 12:34:25 -07:00
}
.tileImage {
display: inline-block;
background-size: contain;
background-repeat: no-repeat;
background-position: center top;
}
.defaultTileImage {
2013-12-21 11:37:34 -07:00
background-color: #555;
2013-05-03 12:34:25 -07:00
}
.tileItem p {
margin: 1em 0 0;
2013-05-03 12:34:25 -07:00
}
.tileContent {
display: inline-block;
padding-left: 10px;
text-align: left;
vertical-align: top;
overflow: hidden;
}
2013-05-04 11:21:29 -07:00
.smallPosterTileItem .tileImage {
2015-06-18 21:23:55 -07:00
height: 150px;
width: 35%;
2013-05-04 11:21:29 -07:00
}
.smallPosterTileItem .tileContent {
width: 60%;
2013-05-04 11:21:29 -07:00
}
2013-08-02 13:36:44 -07:00
@media all and (min-width: 540px) {
2013-05-04 11:21:29 -07:00
2013-08-02 13:36:44 -07:00
.tileItem {
display: inline-block;
margin-left: 3px;
margin-right: 3px;
}
2013-05-04 11:21:29 -07:00
.smallPosterTileItem {
width: 46%;
2013-05-04 11:21:29 -07:00
display: inline-block;
2013-09-03 14:06:33 -07:00
}
2013-05-04 11:21:29 -07:00
}
2013-05-03 12:34:25 -07:00
@media all and (min-width: 750px) {
.smallPosterTileItem {
2015-06-19 09:36:51 -07:00
width: 30.5%;
2013-05-03 12:34:25 -07:00
}
2015-06-25 14:50:56 -07:00
}