mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-03-17 14:30:33 +00:00
26 lines
No EOL
577 B
CSS
26 lines
No EOL
577 B
CSS
/* Common */
|
|
/* Responsive Breakpoints */
|
|
/* Transitions - Based on Angular Material */
|
|
/* Elevation - Based on Angular Material */
|
|
.md-backdrop {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 99;
|
|
pointer-events: none;
|
|
background-color: rgba(0, 0, 0, 0.54);
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 0;
|
|
transition: all 0.5s cubic-bezier(0.35, 0, 0.25, 1);
|
|
}
|
|
.md-backdrop.md-active {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
.md-backdrop.md-transparent {
|
|
background: rgba(0, 0, 0, 0.005);
|
|
}
|
|
|
|
/*# sourceMappingURL=index.css.map*/ |