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
56 lines (47 loc) • 978 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-menu-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: 256px;
}
.demo-menu-item {
align-items: center;
cursor: pointer;
display: flex;
height: 48px;
padding: 0 16px;
position: relative;
transition: background 0.15s linear;
width: auto;
}
.demo-menu-item:hover,
.demo-menu-item:focus {
background-color: rgb(238, 238, 238);
}
.demo-menu-item.selected {
color: rgb(16, 108, 200);
}