You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
451 B
23 lines
451 B
@import 'colors';
|
|
|
|
.download-container {
|
|
position: relative;
|
|
|
|
margin: 2%;
|
|
overflow: hidden;
|
|
width: 300px;
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
}
|
|
|
|
.download-container img {
|
|
width: 300px;
|
|
-moz-transition: all 0.3s;
|
|
-webkit-transition: all 0.3s;
|
|
transition: all 0.3s;
|
|
}
|
|
.download-container:hover img {
|
|
-moz-transform: scale(1.2);
|
|
-webkit-transform: scale(1.2);
|
|
transform: scale(1.2);
|
|
}
|