mirror of
https://github.com/edcommonwealth/ecp.org.git
synced 2026-03-12 17:00:27 -07:00
22 lines
451 B
SCSS
22 lines
451 B
SCSS
@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);
|
|
}
|