forked from SebastianMetzger/angular-material-inbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (75 loc) · 1.4 KB
/
style.css
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
html {
height: 100%;
}
body {
background-color: #ececec;
}
header md-toolbar {
box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
}
footer {
padding: 16px;
}
md-content#main.md-blue-theme {
background-color: #ececec;
}
md-card {
background-color: #ffffff;
cursor: pointer;
}
.collapsed-row span {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.animate-enter {
-webkit-transition: 1s linear all; /* Chrome */
transition: 1s linear all;
opacity: 0;
}
.animate-enter.animate-enter-active {
opacity: 1;
}
.round-face {
border-radius: 30px;
border: 1px solid #ddd;
width: 48px;
height: 48px;
margin: 8px;
}
#mainFab {
position: fixed;
right: 2%;
bottom: 24px;
background-color: #db4437;
}
#mainFab svg {
fill: white;
}
#fab-popup {
height: 260px;
position: fixed;
right: 2%;
bottom: 90px;
}
#content {
min-width: 70%;
max-width: 1080px;
}
.animate-if {
background:white;
border:1px solid black;
padding:10px;
}
.animate-if.ng-enter, .animate-if.ng-leave {
-webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
}
.animate-if.ng-enter,
.animate-if.ng-leave.ng-leave-active {
opacity:0;
}
.animate-if.ng-leave,
.animate-if.ng-enter.ng-enter-active {
opacity:1;
}