UNPKG

1.52 kBCSSView Raw
1/**
2 * Mixin that creates a new stacking context.
3 * see https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
4 */
5/**
6 * This mixin hides an element visually.
7 * That means it's still accessible for screen-readers but not visible in view.
8 */
9/**
10 * Forces an element to grow to fit floated contents; used as as an alternative to
11 * `overflow: hidden;` because it doesn't cut off contents.
12 */
13/**
14 * A mixin, which generates temporary ink ripple on a given component.
15 * When $bindToParent is set to true, it will check for the focused class on the same selector as you included
16 * that mixin.
17 * It is also possible to specify the color palette of the temporary ripple. By default it uses the
18 * accent palette for its background.
19 */
20md-toolbar {
21 display: flex;
22 box-sizing: border-box;
23 width: 100%;
24 min-height: 64px;
25 font-size: 20px;
26 font-weight: 400;
27 font-family: Roboto, "Helvetica Neue", sans-serif;
28 padding: 0 16px;
29 flex-direction: column;
30 background: whitesmoke;
31 color: rgba(0, 0, 0, 0.87); }
32 md-toolbar.md-primary {
33 background: #009688;
34 color: white; }
35 md-toolbar.md-accent {
36 background: #9c27b0;
37 color: rgba(255, 255, 255, 0.870588); }
38 md-toolbar.md-warn {
39 background: #f44336;
40 color: white; }
41 md-toolbar md-toolbar-row {
42 display: flex;
43 box-sizing: border-box;
44 width: 100%;
45 height: 64px;
46 flex-direction: row;
47 align-items: center; }
48
49/*# sourceMappingURL=toolbar.css.map */