angular-material-npfixed
Version:
The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M
39 lines (32 loc) • 671 B
CSS
.demo-md-panel {
min-height: 500px;
}
.demo-dialog-example {
background: white;
border-radius: 4px;
box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2),
0 13px 19px 2px rgba(0, 0, 0, 0.14),
0 5px 24px 4px rgba(0, 0, 0, 0.12);
width: 500px;
}
.demo-dialog-content {
padding: 0 15px;
width: 100%;
}
.demo-dialog-content img {
height: 300px;
margin: auto;
}
.demo-dialog-button {
width: 100%;
}
.demo-dialog-custom-animation-open {
opacity: 1;
transition: all 1s linear, opacity 1ms;
transform: rotate(390deg);
}
.demo-dialog-custom-animation-close {
opacity: 0;
transition: all 1s linear, opacity 1ms;
transform: rotate(0deg);
}