-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
54 lines (47 loc) · 939 Bytes
/
app.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
body[ng-cloak] {
display:none;
}
body {
background-color: #FEEBC8;
}
div[flex="10"] {
background-color: #fff6de;
}
div[flex="60"] {
background-color: #b4b472;
}
div[flex="30"] {
background-color: #fff6de;
}
section[flex="40"] {
background-color: #D4E5FA;
}
section[flex="70"] {
background-color: #E8FCD6;
}
section[flex="20"] {
background-color: #FFD5E3;
}
section[flex=""] {
background-color: rgba(0, 128, 0, 0.35);
}
/* Important to set height for column layout */
.boxWithHeight {
box-sizing: border-box;
height: 100%;
}
.a, section {
border: 5px solid rgba(85, 97, 85, 0.27);
margin: 5px;
}
section {
background-color: #dedede;
}
img {
margin: auto;
max-width: 100%;
}
/*
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that can be in foundin the LICENSE file at http://material.angularjs.org/license.
*/