frontend/src/stylesheets/video-item.scss

31 lines
403 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: 400px;
padding: 1em;
}
a {
text-decoration: none;
font-size: 14px;
color: black;
}
.video-thumbnail {
transition: all .4s ease-in-out;
}
.video-thumbnail:hover {
transform: scale(1.1);
}
.video-thumbnail-container {
position: relative;
overflow: hidden;
}