35 lines
486 B
SCSS
35 lines
486 B
SCSS
@import "variables";
|
|
@import "globals";
|
|
@import "header";
|
|
|
|
/* Video item*/
|
|
.video-item {
|
|
background: $light-gray-color;
|
|
min-height: 250px;
|
|
padding: 1em;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
color: black;
|
|
}
|
|
|
|
.video-thumbnail {
|
|
width: 100%;
|
|
max-height: 150px;
|
|
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;
|
|
}
|