frontend/src/stylesheets/video-item.scss

35 lines
465 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;
2018-12-12 20:04:15 +02:00
min-height: 250px;
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 {
2018-12-12 20:04:15 +02:00
width: 100%;
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-11 14:41:57 +02:00
}