frontend/src/stylesheets/video-item.scss

31 lines
442 B
SCSS
Raw Normal View History

2018-12-11 12:42:56 +02:00
@import "variables";
@import "globals";
@import "header";
/* Video item*/
.video-item {
2018-12-11 14:41:57 +02:00
background: $light-gray-color;
min-height: 300px;
2018-12-11 12:42:56 +02:00
padding: 1em;
}
.video-thumbnail {
2018-12-12 20:04:15 +02:00
width: 100%;
2018-12-12 20:08:43 +02:00
max-height: 150px;
2018-12-11 12:42:56 +02:00
transition: all .4s ease-in-out;
}
.video-thumbnail:hover {
transform: scale(1.1);
}
.video-thumbnail-container {
position: relative;
overflow: hidden;
}
2018-12-11 14:41:57 +02:00
.video-title {
padding-top: 1em;
2018-12-22 14:36:49 +02:00
font-weight: normal;
2018-12-11 14:41:57 +02:00
}