mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-03-23 09:20:31 +00:00
39 lines
No EOL
993 B
CSS
39 lines
No EOL
993 B
CSS
/* Common */
|
|
/* Responsive Breakpoints */
|
|
/* Transitions - Based on Angular Material */
|
|
/* Elevation - Based on Angular Material */
|
|
.md-ink-ripple {
|
|
pointer-events: none;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
-webkit-mask-image: radial-gradient(circle, white 100%, black 100%);
|
|
transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
|
|
}
|
|
.md-ripple {
|
|
position: absolute;
|
|
background-color: currentColor;
|
|
border-radius: 50%;
|
|
opacity: .2;
|
|
transform: scale(0) translateZ(0);
|
|
transition: none;
|
|
will-change: background-color, opacity, transform, width, height, top, left;
|
|
}
|
|
.md-ripple.md-active {
|
|
animation: ripple 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
|
|
}
|
|
.md-ripple.md-active.md-fadeout {
|
|
opacity: 0 !important;
|
|
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
transition-duration: .6s;
|
|
}
|
|
@keyframes ripple {
|
|
to {
|
|
transform: scale(2.2) translateZ(0);
|
|
}
|
|
}
|
|
|
|
/*# sourceMappingURL=index.css.map*/ |