1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/css/tileitem.css

80 lines
1.4 KiB
CSS
Raw Normal View History

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