ember-snap-svg
Version:
Imports the Snap.svg shim for your Ember CLI project
32 lines (29 loc) • 501 B
CSS
.morph-shape {
height: 100px;
left: calc(50% - 50px);
position: absolute;
top: 30%;
width: 100px;
z-index: 100;
}
.morph-shape svg path {
fill: #DA7071;
-webkit-transition: fill 0.3s;
transition: fill 0.3s;
}
.morph-shape.open svg path {
fill: #777;
}
button {
background-color: rgba(255, 0, 0, 0.2);
border: 0 none;
color: #fff;
font-size: 30px;
height: 100px;
left: calc(50% - 50px);
outline: none;
position: absolute;
top: 30%;
width: 100px;
z-index: 101;
}