UNPKG

490 BSCSSView Raw
1// Core styles that can be used to apply material design treatments to any element.
2@import '../a11y/live-announcer';
3@import 'elevation';
4@import '../overlay/overlay';
5@import 'ripple';
6
7// Provides external CSS classes for each elevation value. Each CSS class is formatted as
8// `md-elevation-z$zValue` where `$zValue` corresponds to the z-space to which the element is
9// elevated.
10@for $zValue from 0 through 24 {
11 .md-elevation-z#{$zValue} {
12 @include md-elevation($zValue);
13 }
14}