site-max/scss/_portfolio.scss

27 lines
504 B
SCSS
Raw Normal View History

2017-07-14 15:51:49 +02:00
// Styling for the portfolio section
2017-07-15 17:36:21 +02:00
#portfolio {
2017-07-15 17:39:39 +02:00
padding: 0;
2017-07-24 22:33:29 +02:00
.element-portfolio {
padding: 3px;
line-height: 0;
2017-07-15 17:36:21 +02:00
video {
width: 100%;
}
2017-07-24 17:14:59 +02:00
img {
width: 100%;
2017-07-24 22:33:29 +02:00
transition: 1s;
2017-07-24 17:14:59 +02:00
}
2017-07-19 14:02:58 +02:00
&.clickable {
cursor: pointer;
}
2017-07-24 22:33:29 +02:00
&:hover {
img {
transform: scale(1.5);
2017-07-14 15:51:49 +02:00
}
}
2017-07-24 22:33:29 +02:00
.portfolio-container {
overflow: hidden;
2017-07-14 15:51:49 +02:00
}
}
}