forked from PatrickJS/angular-webpack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.style.css
More file actions
53 lines (50 loc) · 891 Bytes
/
Copy pathapp.style.css
File metadata and controls
53 lines (50 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
html, body{
height: 100%;
background: #F4FAFA;
font-family: Arial, Helvetica, sans-serif;
}
button.active{
background: #fff;
color: #009688;
}
button.active:hover{
color: #fff;
}
.fill{
flex: 1 1 auto;
}
.app-state{
margin: 15px;
flex: 1;
}
.home{
flex: 1;
}
md-content{
display: flex;
flex-direction: column;
height: 100%;
}
footer{
flex: 0 0 60px;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
}
/** remove when fixed in angular2-material **/
/** The overlay-container is an invisible element which contains all individual overlays. */
.md-overlay-container {
position: absolute;
pointer-events: none;
top: 0;
left: 0;
height: 100%;
width: 100%; }
/** A single overlay pane. */
.md-overlay-pane {
position: absolute;
pointer-events: auto;
box-sizing: border-box;
z-index: 1000; }