-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathapp-styles.css
257 lines (196 loc) · 3.74 KB
/
app-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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
html, body {
font-family: 'Roboto', sans-serif;
font-size: 14px;
height: 100%;
margin: 0px;
padding: 0px;
}
my-app {
position: relative;
top: 6em;
left: 2em;
}
/*body {
margin: 2em;
font-family: Arial, Helvetica, sans-serif;
}*/
h1 {
color: #369;
font-size: 250%;
}
h2, h3 {
color: #555;
font-weight: lighter;
}
input, select, button {
color: #555;
font-family: Cambria, Georgia;
font-size: 100%;
}
fieldset {
border: 0;
}
a {
cursor: pointer;
cursor: hand;
}
nav a {
padding: 5px 10px;
text-decoration: none;
margin-top: 10px;
display: inline-block;
background-color: #eee;
border-radius: 4px;
}
nav a:visited, a:link {
color: #607D8B;
}
nav a:hover {
color: #039be5;
background-color: #CFD8DC;
}
nav a.active {
color: #039be5;
}
/*Custom Styles*/
md-toolbar a {
color: inherit !important;
text-decoration: none;
}
.md-headline {
font-size: 16px;
line-height: 18px;
}
md-content {
margin: 4em auto !important;
width: 92%;
padding: 1em;
}
md-content > p.intro {
margin: 0em 1em !important;
}
md-card {
margin: 16px 8px !important;
}
md-card md-card-title {
padding: 8px 12px;
}
md-toolbar.card-title {
min-height: 32px;
}
md-toolbar.dark {
position: fixed !important;
background-color: #222 !important;
top: 0;
z-index: 99999;
}
.md-title-icon > i {
background-image: url("pluralsight.ico");
background-size: 50%;
background-repeat: no-repeat;
background-position: center center;
padding: 1em 2em;
}
.md-toolbar-tools h1, .md-toolbar-tools h2, .md-toolbar-tools h3 {
color: white;
}
/*End Custom Styles*/
/* Toolbar area */
.menu {
background-color: transparent;
border: none;
height: 38px;
margin: 16px;
width: 36px;
}
md-toolbar h1 {
margin: auto;
}
/* Sidenav area */
md-list .md-button {
color: inherit;
font-weight: 500;
text-align: left;
width: 100%;
}
md-list .md-button.selected {
color: #03a9f4;
}
md-sidenav md-list {
padding: 0px 0px 8px 0px;
}
/* Primary content area */
#content {
overflow: hidden;
}
#content {
padding-left: 40px;
padding-right: 40px;
padding-top: 5px;
}
#content .md-button.contact {
background-color: transparent;
border: none;
width: 48px;
height: 48px;
margin: 8px auto 16px 0;
position: absolute;
top: 10px;
right: 40px;
}
#content md-icon.avatar {
margin-top: 10px;
}
#content .md-button.contact > md-icon {
fill: black;
width: 36px;
height: 36px;
}
md-button.menuBtn > md-icon {
fill: white;
width: 24px;
height: 24px;
}
#content .md-button.contact:active > md-icon {
background-color: #dadada;
border-radius: 75%;
padding: 4px;
transition: all 100ms ease-out 30ms;
}
#content img {
display: block;
height: auto;
max-width: 500px;
}
/* Utils */
.content-wrapper {
position: relative;
}
/* Typography support coming in 0.8.0 */
md-toolbar h1 {
font-size: 1.250em;
font-weight: 400;
}
.avatar {
position: relative;
width: 128px;
height: 128px;
border: 1px solid #ddd;
border-radius: 50%;
display: inline-block;
overflow: hidden;
margin: 0px;
vertical-align: middle;
zoom: 0.70;
transform: translateZ(0);
-webkit-transform: scale(0.70);
-moz-transform: scale(0.70);
}
md-bottom-sheet md-icon {
margin-right: 20px;
}
span.name {
font-weight: bold;
font-size: 1.1em;
padding-left: 5px;
}