PeerTube/client/src/app/videos/video-list/video-list.component.scss

57 lines
767 B
SCSS
Raw Normal View History

2016-05-24 16:00:58 -05:00
.videos-info {
@media screen and (max-width: 400px) {
margin-left: 0;
}
2016-05-24 16:00:58 -05:00
margin-bottom: 20px;
border-bottom: 1px solid #f1f1f1;
height: 40px;
line-height: 40px;
my-video-sort {
padding-right: 0;
}
.videos-total-results {
font-size: 13px;
padding-left: 0;
}
my-loader {
display: inline-block;
margin-left: 5px;
}
2016-05-24 16:00:58 -05:00
}
.videos-miniatures {
min-height: 720px;
2017-04-21 04:06:33 -05:00
text-align: center;
my-video-miniature {
2017-04-21 04:06:33 -05:00
text-align: left;
transition: all 0.5s ease;
&.ng-enter {
opacity: 0;
}
&.ng-enter-active {
opacity: 1;
}
&.ng-leave {
opacity: 0;
}
}
.no-video {
margin-top: 50px;
text-align: center;
}
}
pagination {
display: block;
text-align: center;
}