-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (92 loc) · 1.56 KB
/
styles.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*Global*/
body{
margin:0px;
}
html,
body {
height: 100%;
}
h1 {
font-size: 36px;
}
h1, h2, h3 {
margin-top: 20px;
margin-bottom: 10px;
font-family: Roboto, "Helvetica Neue", sans-serif;
}
/*.absolute-background*/
.absolute-background {
position: relative;
width: 100%;
padding: 0;
}
.absolute-background .content {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
.absolute-background .background {
width: 100%;
height: 100%;
}
.black-background{
background: rgb(0, 0, 0);
background: rgba(0, 0, 0, 0.5);
}
.image-background{
background-repeat: no-repeat;
background-size: cover;
background-position: center 0px;
}
.jumbotron {
height: 550px;
}
.jumbotron.absolute-background .content {
top: 30%;
}
/*custom helpers*/
.text-center {
text-align: center;
}
.full-width {
width: 100%;
}
.fill-remaining {
flex: 1 1 auto;
}
.block-center {
margin: auto;
}
/*material design custom*/
md-icon {
font-size: 100%;
height: inherit;
vertical-align: top;
width: inherit;
}
[md-raised-button], [md-fab], [md-mini-fab], [md-button], [md-icon-button] {
margin-top: 10px;
margin-bottom: 10px;
}
md-card {
margin: 16px;
padding: 0px !important;
}
md-card md-card-content {
padding: 16px;
}
md-input {
margin-top: 10px;
margin-bottom: 10px;
}
md-hint {
position: absolute;
font-size: 75%;
bottom: -0.5em;
}
/*TODO remove this in an angular 2 material future release*/
md-input.ng-invalid {
color: #f44336;
}