frontend/src/stylesheets/video-item.scss

35 lines
466 B
SCSS
Raw Normal View History

2018-12-11 12:42:56 +02:00
@import "variables";
@import "globals";
@import "header";
/* Video item*/
.video-item {
background: #f6f6f6;
min-height: 440px;
2018-12-11 12:42:56 +02:00
padding: 1em;
}
.random-topics {
a{
text-decoration: none;
font-size: 14px;
color: black;
}
2018-12-11 12:42:56 +02:00
}
.video-thumbnail {
transition: all .4s ease-in-out;
}
.video-thumbnail:hover {
transform: scale(1.1);
}
.video-thumbnail-container {
position: relative;
overflow: hidden;
}
.video-title{
padding-top: 1em;
}