frontend/src/stylesheets/video-item.scss

34 lines
450 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: 440px;
2018-12-11 12:42:56 +02:00
padding: 1em;
}
2018-12-11 14:41:57 +02:00
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;
}
2018-12-11 14:41:57 +02:00
.video-title {
padding-top: 1em;
2018-12-11 14:41:57 +02:00
}