|
@@ -0,0 +1,517 @@
|
|
1
|
+// http://ionicframework.com/docs/theming/
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+// App Global Sass
|
|
5
|
+// --------------------------------------------------
|
|
6
|
+// Put style rules here that you want to apply globally. These
|
|
7
|
+// styles are for the entire app and not just one component.
|
|
8
|
+// Additionally, this file can be also used as an entry point
|
|
9
|
+// to import other Sass files to be included in the output CSS.
|
|
10
|
+//
|
|
11
|
+// Shared Sass variables, which can be used to adjust Ionic's
|
|
12
|
+// default Sass variables, belong in "theme/variables.scss".
|
|
13
|
+//
|
|
14
|
+// To declare rules for a specific mode, create a child rule
|
|
15
|
+// for the .md, .ios, or .wp mode classes. The mode class is
|
|
16
|
+// automatically applied to the <body> element in the app.
|
|
17
|
+
|
|
18
|
+@import url("https://fonts.googleapis.com/css?family=Codystar");
|
|
19
|
+@import url("https://fonts.googleapis.com/css?family=Raleway+Dots");
|
|
20
|
+@font-face {
|
|
21
|
+ font-family: "Ionicons";
|
|
22
|
+ src: url("../lib/ionic/fonts/ionicons.eot?v=2.0.1");
|
|
23
|
+ src: url("../lib/ionic/fonts/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"), url("../lib/ionic/fonts/ionicons.ttf?v=2.0.1") format("truetype"), url("../lib/ionic/fonts/ionicons.woff?v=2.0.1") format("woff"), url("../lib/ionic/fonts/ionicons.woff") format("woff"), url("../lib/ionic/fonts/ionicons.svg?v=2.0.1#Ionicons") format("svg");
|
|
24
|
+ font-weight: normal;
|
|
25
|
+ font-style: normal; }
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+/**
|
|
29
|
+ * Buttons
|
|
30
|
+ * --------------------------------------------------
|
|
31
|
+ */
|
|
32
|
+ .button {
|
|
33
|
+ border-color: transparent;
|
|
34
|
+ background-color: #f8f8f8;
|
|
35
|
+ color: #444;
|
|
36
|
+ position: relative;
|
|
37
|
+ display: inline-block;
|
|
38
|
+ margin: 0;
|
|
39
|
+ padding: 0 12px;
|
|
40
|
+ min-width: 52px;
|
|
41
|
+ min-height: 47px;
|
|
42
|
+ border-width: 1px;
|
|
43
|
+ border-style: solid;
|
|
44
|
+ border-radius: 4px;
|
|
45
|
+ vertical-align: top;
|
|
46
|
+ text-align: center;
|
|
47
|
+ text-overflow: ellipsis;
|
|
48
|
+ font-size: 16px;
|
|
49
|
+ line-height: 42px;
|
|
50
|
+ cursor: pointer; }
|
|
51
|
+ .button:hover {
|
|
52
|
+ color: #444;
|
|
53
|
+ text-decoration: none; }
|
|
54
|
+ .button.active, .button.activated {
|
|
55
|
+ border-color: #a2a2a2;
|
|
56
|
+ background-color: #e5e5e5; }
|
|
57
|
+ .button:after {
|
|
58
|
+ position: absolute;
|
|
59
|
+ top: -6px;
|
|
60
|
+ right: -6px;
|
|
61
|
+ bottom: -6px;
|
|
62
|
+ left: -6px;
|
|
63
|
+ content: ' '; }
|
|
64
|
+ .button .icon {
|
|
65
|
+ vertical-align: top;
|
|
66
|
+ pointer-events: none; }
|
|
67
|
+ .button .icon:before, .button.icon:before, .button.icon-left:before, .button.icon-right:before {
|
|
68
|
+ display: inline-block;
|
|
69
|
+ padding: 0 0 1px 0;
|
|
70
|
+ vertical-align: inherit;
|
|
71
|
+ font-size: 24px;
|
|
72
|
+ line-height: 41px;
|
|
73
|
+ pointer-events: none; }
|
|
74
|
+ .button.icon-left:before {
|
|
75
|
+ float: left;
|
|
76
|
+ padding-right: .2em;
|
|
77
|
+ padding-left: 0; }
|
|
78
|
+ .button.icon-right:before {
|
|
79
|
+ float: right;
|
|
80
|
+ padding-right: 0;
|
|
81
|
+ padding-left: .2em; }
|
|
82
|
+ .button.button-block, .button.button-full {
|
|
83
|
+ margin-top: 10px;
|
|
84
|
+ margin-bottom: 10px; }
|
|
85
|
+ .button.button-light {
|
|
86
|
+ border-color: transparent;
|
|
87
|
+ background-color: #fff;
|
|
88
|
+ color: #444; }
|
|
89
|
+ .button.button-light:hover {
|
|
90
|
+ color: #444;
|
|
91
|
+ text-decoration: none; }
|
|
92
|
+ .button.button-light.active, .button.button-light.activated {
|
|
93
|
+ border-color: #a2a2a2;
|
|
94
|
+ background-color: #fafafa; }
|
|
95
|
+ .button.button-light.button-clear {
|
|
96
|
+ border-color: transparent;
|
|
97
|
+ background: none;
|
|
98
|
+ box-shadow: none;
|
|
99
|
+ color: #ddd; }
|
|
100
|
+ .button.button-light.button-icon {
|
|
101
|
+ border-color: transparent;
|
|
102
|
+ background: none; }
|
|
103
|
+ .button.button-light.button-outline {
|
|
104
|
+ border-color: #ddd;
|
|
105
|
+ background: transparent;
|
|
106
|
+ color: #ddd; }
|
|
107
|
+ .button.button-light.button-outline.active, .button.button-light.button-outline.activated {
|
|
108
|
+ background-color: #ddd;
|
|
109
|
+ box-shadow: none;
|
|
110
|
+ color: #fff; }
|
|
111
|
+ .button.button-stable {
|
|
112
|
+ border-color: transparent;
|
|
113
|
+ background-color: #f8f8f8;
|
|
114
|
+ color: #444; }
|
|
115
|
+ .button.button-stable:hover {
|
|
116
|
+ color: #444;
|
|
117
|
+ text-decoration: none; }
|
|
118
|
+ .button.button-stable.active, .button.button-stable.activated {
|
|
119
|
+ border-color: #a2a2a2;
|
|
120
|
+ background-color: #e5e5e5; }
|
|
121
|
+ .button.button-stable.button-clear {
|
|
122
|
+ border-color: transparent;
|
|
123
|
+ background: none;
|
|
124
|
+ box-shadow: none;
|
|
125
|
+ color: #b2b2b2; }
|
|
126
|
+ .button.button-stable.button-icon {
|
|
127
|
+ border-color: transparent;
|
|
128
|
+ background: none; }
|
|
129
|
+ .button.button-stable.button-outline {
|
|
130
|
+ border-color: #b2b2b2;
|
|
131
|
+ background: transparent;
|
|
132
|
+ color: #b2b2b2; }
|
|
133
|
+ .button.button-stable.button-outline.active, .button.button-stable.button-outline.activated {
|
|
134
|
+ background-color: #b2b2b2;
|
|
135
|
+ box-shadow: none;
|
|
136
|
+ color: #fff; }
|
|
137
|
+ .button.button-positive {
|
|
138
|
+ border-color: transparent;
|
|
139
|
+ background-color: #387ef5;
|
|
140
|
+ color: #fff; }
|
|
141
|
+ .button.button-positive:hover {
|
|
142
|
+ color: #fff;
|
|
143
|
+ text-decoration: none; }
|
|
144
|
+ .button.button-positive.active, .button.button-positive.activated {
|
|
145
|
+ border-color: #a2a2a2;
|
|
146
|
+ background-color: #0c60ee; }
|
|
147
|
+ .button.button-positive.button-clear {
|
|
148
|
+ border-color: transparent;
|
|
149
|
+ background: none;
|
|
150
|
+ box-shadow: none;
|
|
151
|
+ color: #387ef5; }
|
|
152
|
+ .button.button-positive.button-icon {
|
|
153
|
+ border-color: transparent;
|
|
154
|
+ background: none; }
|
|
155
|
+ .button.button-positive.button-outline {
|
|
156
|
+ border-color: #387ef5;
|
|
157
|
+ background: transparent;
|
|
158
|
+ color: #387ef5; }
|
|
159
|
+ .button.button-positive.button-outline.active, .button.button-positive.button-outline.activated {
|
|
160
|
+ background-color: #387ef5;
|
|
161
|
+ box-shadow: none;
|
|
162
|
+ color: #fff; }
|
|
163
|
+ .button.button-calm {
|
|
164
|
+ border-color: transparent;
|
|
165
|
+ background-color: #11c1f3;
|
|
166
|
+ color: #fff; }
|
|
167
|
+ .button.button-calm:hover {
|
|
168
|
+ color: #fff;
|
|
169
|
+ text-decoration: none; }
|
|
170
|
+ .button.button-calm.active, .button.button-calm.activated {
|
|
171
|
+ border-color: #a2a2a2;
|
|
172
|
+ background-color: #0a9dc7; }
|
|
173
|
+ .button.button-calm.button-clear {
|
|
174
|
+ border-color: transparent;
|
|
175
|
+ background: none;
|
|
176
|
+ box-shadow: none;
|
|
177
|
+ color: #11c1f3; }
|
|
178
|
+ .button.button-calm.button-icon {
|
|
179
|
+ border-color: transparent;
|
|
180
|
+ background: none; }
|
|
181
|
+ .button.button-calm.button-outline {
|
|
182
|
+ border-color: #11c1f3;
|
|
183
|
+ background: transparent;
|
|
184
|
+ color: #11c1f3; }
|
|
185
|
+ .button.button-calm.button-outline.active, .button.button-calm.button-outline.activated {
|
|
186
|
+ background-color: #11c1f3;
|
|
187
|
+ box-shadow: none;
|
|
188
|
+ color: #fff; }
|
|
189
|
+ .button.button-assertive {
|
|
190
|
+ border-color: transparent;
|
|
191
|
+ background-color: #ef473a;
|
|
192
|
+ color: #fff; }
|
|
193
|
+ .button.button-assertive:hover {
|
|
194
|
+ color: #fff;
|
|
195
|
+ text-decoration: none; }
|
|
196
|
+ .button.button-assertive.active, .button.button-assertive.activated {
|
|
197
|
+ border-color: #a2a2a2;
|
|
198
|
+ background-color: #e42112; }
|
|
199
|
+ .button.button-assertive.button-clear {
|
|
200
|
+ border-color: transparent;
|
|
201
|
+ background: none;
|
|
202
|
+ box-shadow: none;
|
|
203
|
+ color: #ef473a; }
|
|
204
|
+ .button.button-assertive.button-icon {
|
|
205
|
+ border-color: transparent;
|
|
206
|
+ background: none; }
|
|
207
|
+ .button.button-assertive.button-outline {
|
|
208
|
+ border-color: #ef473a;
|
|
209
|
+ background: transparent;
|
|
210
|
+ color: #ef473a; }
|
|
211
|
+ .button.button-assertive.button-outline.active, .button.button-assertive.button-outline.activated {
|
|
212
|
+ background-color: #ef473a;
|
|
213
|
+ box-shadow: none;
|
|
214
|
+ color: #fff; }
|
|
215
|
+ .button.button-balanced {
|
|
216
|
+ border-color: transparent;
|
|
217
|
+ background-color: #33cd5f;
|
|
218
|
+ color: #fff; }
|
|
219
|
+ .button.button-balanced:hover {
|
|
220
|
+ color: #fff;
|
|
221
|
+ text-decoration: none; }
|
|
222
|
+ .button.button-balanced.active, .button.button-balanced.activated {
|
|
223
|
+ border-color: #a2a2a2;
|
|
224
|
+ background-color: #28a54c; }
|
|
225
|
+ .button.button-balanced.button-clear {
|
|
226
|
+ border-color: transparent;
|
|
227
|
+ background: none;
|
|
228
|
+ box-shadow: none;
|
|
229
|
+ color: #33cd5f; }
|
|
230
|
+ .button.button-balanced.button-icon {
|
|
231
|
+ border-color: transparent;
|
|
232
|
+ background: none; }
|
|
233
|
+ .button.button-balanced.button-outline {
|
|
234
|
+ border-color: #33cd5f;
|
|
235
|
+ background: transparent;
|
|
236
|
+ color: #33cd5f; }
|
|
237
|
+ .button.button-balanced.button-outline.active, .button.button-balanced.button-outline.activated {
|
|
238
|
+ background-color: #33cd5f;
|
|
239
|
+ box-shadow: none;
|
|
240
|
+ color: #fff; }
|
|
241
|
+ .button.button-energized {
|
|
242
|
+ border-color: transparent;
|
|
243
|
+ background-color: #ffc900;
|
|
244
|
+ color: #fff; }
|
|
245
|
+ .button.button-energized:hover {
|
|
246
|
+ color: #fff;
|
|
247
|
+ text-decoration: none; }
|
|
248
|
+ .button.button-energized.active, .button.button-energized.activated {
|
|
249
|
+ border-color: #a2a2a2;
|
|
250
|
+ background-color: #e6b500; }
|
|
251
|
+ .button.button-energized.button-clear {
|
|
252
|
+ border-color: transparent;
|
|
253
|
+ background: none;
|
|
254
|
+ box-shadow: none;
|
|
255
|
+ color: #ffc900; }
|
|
256
|
+ .button.button-energized.button-icon {
|
|
257
|
+ border-color: transparent;
|
|
258
|
+ background: none; }
|
|
259
|
+ .button.button-energized.button-outline {
|
|
260
|
+ border-color: #ffc900;
|
|
261
|
+ background: transparent;
|
|
262
|
+ color: #ffc900; }
|
|
263
|
+ .button.button-energized.button-outline.active, .button.button-energized.button-outline.activated {
|
|
264
|
+ background-color: #ffc900;
|
|
265
|
+ box-shadow: none;
|
|
266
|
+ color: #fff; }
|
|
267
|
+ .button.button-royal {
|
|
268
|
+ border-color: transparent;
|
|
269
|
+ background-color: #886aea;
|
|
270
|
+ color: #fff; }
|
|
271
|
+ .button.button-royal:hover {
|
|
272
|
+ color: #fff;
|
|
273
|
+ text-decoration: none; }
|
|
274
|
+ .button.button-royal.active, .button.button-royal.activated {
|
|
275
|
+ border-color: #a2a2a2;
|
|
276
|
+ background-color: #6b46e5; }
|
|
277
|
+ .button.button-royal.button-clear {
|
|
278
|
+ border-color: transparent;
|
|
279
|
+ background: none;
|
|
280
|
+ box-shadow: none;
|
|
281
|
+ color: #886aea; }
|
|
282
|
+ .button.button-royal.button-icon {
|
|
283
|
+ border-color: transparent;
|
|
284
|
+ background: none; }
|
|
285
|
+ .button.button-royal.button-outline {
|
|
286
|
+ border-color: #886aea;
|
|
287
|
+ background: transparent;
|
|
288
|
+ color: #886aea; }
|
|
289
|
+ .button.button-royal.button-outline.active, .button.button-royal.button-outline.activated {
|
|
290
|
+ background-color: #886aea;
|
|
291
|
+ box-shadow: none;
|
|
292
|
+ color: #fff; }
|
|
293
|
+ .button.button-dark {
|
|
294
|
+ border-color: transparent;
|
|
295
|
+ background-color: #444;
|
|
296
|
+ color: #fff; }
|
|
297
|
+ .button.button-dark:hover {
|
|
298
|
+ color: #fff;
|
|
299
|
+ text-decoration: none; }
|
|
300
|
+ .button.button-dark.active, .button.button-dark.activated {
|
|
301
|
+ border-color: #a2a2a2;
|
|
302
|
+ background-color: #262626; }
|
|
303
|
+ .button.button-dark.button-clear {
|
|
304
|
+ border-color: transparent;
|
|
305
|
+ background: none;
|
|
306
|
+ box-shadow: none;
|
|
307
|
+ color: #444; }
|
|
308
|
+ .button.button-dark.button-icon {
|
|
309
|
+ border-color: transparent;
|
|
310
|
+ background: none; }
|
|
311
|
+ .button.button-dark.button-outline {
|
|
312
|
+ border-color: #444;
|
|
313
|
+ background: transparent;
|
|
314
|
+ color: #444; }
|
|
315
|
+ .button.button-dark.button-outline.active, .button.button-dark.button-outline.activated {
|
|
316
|
+ background-color: #444;
|
|
317
|
+ box-shadow: none;
|
|
318
|
+ color: #fff; }
|
|
319
|
+
|
|
320
|
+ .button-small {
|
|
321
|
+ padding: 2px 4px 1px;
|
|
322
|
+ min-width: 28px;
|
|
323
|
+ min-height: 30px;
|
|
324
|
+ font-size: 12px;
|
|
325
|
+ line-height: 26px; }
|
|
326
|
+ .button-small .icon:before, .button-small.icon:before, .button-small.icon-left:before, .button-small.icon-right:before {
|
|
327
|
+ font-size: 16px;
|
|
328
|
+ line-height: 19px;
|
|
329
|
+ margin-top: 3px; }
|
|
330
|
+ .text-small {
|
|
331
|
+ padding: 2px 4px 1px;
|
|
332
|
+ min-width: 28px;
|
|
333
|
+ min-height: px;
|
|
334
|
+ font-size: 12px;
|
|
335
|
+ line-height: 26px;
|
|
336
|
+ }
|
|
337
|
+ .button-large {
|
|
338
|
+ padding: 0 16px;
|
|
339
|
+ min-width: 68px;
|
|
340
|
+ min-height: 59px;
|
|
341
|
+ font-size: 20px;
|
|
342
|
+ line-height: 53px; }
|
|
343
|
+ .button-large .icon:before, .button-large.icon:before, .button-large.icon-left:before, .button-large.icon-right:before {
|
|
344
|
+ padding-bottom: 2px;
|
|
345
|
+ font-size: 32px;
|
|
346
|
+ line-height: 51px; }
|
|
347
|
+
|
|
348
|
+ .button-icon {
|
|
349
|
+ -webkit-transition: opacity 0.1s;
|
|
350
|
+ transition: opacity 0.1s;
|
|
351
|
+ padding: 0 6px;
|
|
352
|
+ min-width: initial;
|
|
353
|
+ border-color: transparent;
|
|
354
|
+ background: none; }
|
|
355
|
+ .button-icon.button.active, .button-icon.button.activated {
|
|
356
|
+ border-color: transparent;
|
|
357
|
+ background: none;
|
|
358
|
+ box-shadow: none;
|
|
359
|
+ opacity: 0.3; }
|
|
360
|
+ .button-icon .icon:before, .button-icon.icon:before {
|
|
361
|
+ font-size: 32px; }
|
|
362
|
+
|
|
363
|
+ .button-clear {
|
|
364
|
+ -webkit-transition: opacity 0.1s;
|
|
365
|
+ transition: opacity 0.1s;
|
|
366
|
+ padding: 0 6px;
|
|
367
|
+ max-height: 42px;
|
|
368
|
+ border-color: transparent;
|
|
369
|
+ background: none;
|
|
370
|
+ box-shadow: none; }
|
|
371
|
+ .button-clear.button-clear {
|
|
372
|
+ border-color: transparent;
|
|
373
|
+ background: none;
|
|
374
|
+ box-shadow: none;
|
|
375
|
+ color: transparent; }
|
|
376
|
+ .button-clear.button-icon {
|
|
377
|
+ border-color: transparent;
|
|
378
|
+ background: none; }
|
|
379
|
+ .button-clear.active, .button-clear.activated {
|
|
380
|
+ opacity: 0.3; }
|
|
381
|
+
|
|
382
|
+ .button-outline {
|
|
383
|
+ -webkit-transition: opacity 0.1s;
|
|
384
|
+ transition: opacity 0.1s;
|
|
385
|
+ background: none;
|
|
386
|
+ box-shadow: none; }
|
|
387
|
+ .button-outline.button-outline {
|
|
388
|
+ border-color: transparent;
|
|
389
|
+ background: transparent;
|
|
390
|
+ color: transparent; }
|
|
391
|
+ .button-outline.button-outline.active, .button-outline.button-outline.activated {
|
|
392
|
+ background-color: transparent;
|
|
393
|
+ box-shadow: none;
|
|
394
|
+ color: #fff; }
|
|
395
|
+
|
|
396
|
+ .padding > .button.button-block:first-child {
|
|
397
|
+ margin-top: 0; }
|
|
398
|
+
|
|
399
|
+ .button-block {
|
|
400
|
+ display: block;
|
|
401
|
+ clear: both; }
|
|
402
|
+ .button-block:after {
|
|
403
|
+ clear: both; }
|
|
404
|
+
|
|
405
|
+ .button-full,
|
|
406
|
+ .button-full > .button {
|
|
407
|
+ display: block;
|
|
408
|
+ margin-right: 0;
|
|
409
|
+ margin-left: 0;
|
|
410
|
+ border-right-width: 0;
|
|
411
|
+ border-left-width: 0;
|
|
412
|
+ border-radius: 0; }
|
|
413
|
+
|
|
414
|
+ button.button-block,
|
|
415
|
+ button.button-full,
|
|
416
|
+ .button-full > button.button,
|
|
417
|
+ input.button.button-block {
|
|
418
|
+ width: 100%; }
|
|
419
|
+
|
|
420
|
+ a.button {
|
|
421
|
+ text-decoration: none; }
|
|
422
|
+ a.button .icon:before, a.button.icon:before, a.button.icon-left:before, a.button.icon-right:before {
|
|
423
|
+ margin-top: 2px; }
|
|
424
|
+
|
|
425
|
+ .button.disabled,
|
|
426
|
+ .button[disabled] {
|
|
427
|
+ opacity: .4;
|
|
428
|
+ cursor: default !important;
|
|
429
|
+ pointer-events: none; }
|
|
430
|
+
|
|
431
|
+ /**
|
|
432
|
+ * Button Bar
|
|
433
|
+ * --------------------------------------------------
|
|
434
|
+ */
|
|
435
|
+ .button-bar {
|
|
436
|
+ display: -webkit-box;
|
|
437
|
+ display: -webkit-flex;
|
|
438
|
+ display: -moz-box;
|
|
439
|
+ display: -moz-flex;
|
|
440
|
+ display: -ms-flexbox;
|
|
441
|
+ display: flex;
|
|
442
|
+ -webkit-box-flex: 1;
|
|
443
|
+ -webkit-flex: 1;
|
|
444
|
+ -moz-box-flex: 1;
|
|
445
|
+ -moz-flex: 1;
|
|
446
|
+ -ms-flex: 1;
|
|
447
|
+ flex: 1;
|
|
448
|
+ width: 100%; }
|
|
449
|
+ .button-bar.button-bar-inline {
|
|
450
|
+ display: block;
|
|
451
|
+ width: auto;
|
|
452
|
+ *zoom: 1; }
|
|
453
|
+ .button-bar.button-bar-inline:before, .button-bar.button-bar-inline:after {
|
|
454
|
+ display: table;
|
|
455
|
+ content: "";
|
|
456
|
+ line-height: 0; }
|
|
457
|
+ .button-bar.button-bar-inline:after {
|
|
458
|
+ clear: both; }
|
|
459
|
+ .button-bar.button-bar-inline > .button {
|
|
460
|
+ width: auto;
|
|
461
|
+ display: inline-block;
|
|
462
|
+ float: left; }
|
|
463
|
+ .button-bar.bar-light > .button {
|
|
464
|
+ border-color: #ddd; }
|
|
465
|
+ .button-bar.bar-stable > .button {
|
|
466
|
+ border-color: #b2b2b2; }
|
|
467
|
+ .button-bar.bar-positive > .button {
|
|
468
|
+ border-color: #0c60ee; }
|
|
469
|
+ .button-bar.bar-calm > .button {
|
|
470
|
+ border-color: #0a9dc7; }
|
|
471
|
+ .button-bar.bar-assertive > .button {
|
|
472
|
+ border-color: #e42112; }
|
|
473
|
+ .button-bar.bar-balanced > .button {
|
|
474
|
+ border-color: #28a54c; }
|
|
475
|
+ .button-bar.bar-energized > .button {
|
|
476
|
+ border-color: #e6b500; }
|
|
477
|
+ .button-bar.bar-royal > .button {
|
|
478
|
+ border-color: #6b46e5; }
|
|
479
|
+ .button-bar.bar-dark > .button {
|
|
480
|
+ border-color: #111; }
|
|
481
|
+
|
|
482
|
+ .button-bar > .button {
|
|
483
|
+ -webkit-box-flex: 1;
|
|
484
|
+ -webkit-flex: 1;
|
|
485
|
+ -moz-box-flex: 1;
|
|
486
|
+ -moz-flex: 1;
|
|
487
|
+ -ms-flex: 1;
|
|
488
|
+ flex: 1;
|
|
489
|
+ display: block;
|
|
490
|
+ overflow: hidden;
|
|
491
|
+ padding: 0 16px;
|
|
492
|
+ width: 0;
|
|
493
|
+ border-width: 1px 0px 1px 1px;
|
|
494
|
+ border-radius: 0;
|
|
495
|
+ text-align: center;
|
|
496
|
+ text-overflow: ellipsis;
|
|
497
|
+ white-space: nowrap; }
|
|
498
|
+ .button-bar > .button:before,
|
|
499
|
+ .button-bar > .button .icon:before {
|
|
500
|
+ line-height: 44px; }
|
|
501
|
+ .button-bar > .button:first-child {
|
|
502
|
+ border-radius: 4px 0px 0px 4px; }
|
|
503
|
+ .button-bar > .button:last-child {
|
|
504
|
+ border-right-width: 1px;
|
|
505
|
+ border-radius: 0px 4px 4px 0px; }
|
|
506
|
+ .button-bar > .button:only-child {
|
|
507
|
+ border-radius: 4px; }
|
|
508
|
+
|
|
509
|
+ .button-bar > .button-small:before,
|
|
510
|
+ .button-bar > .button-small .icon:before {
|
|
511
|
+ line-height: 28px; }
|
|
512
|
+
|
|
513
|
+ .codystar {
|
|
514
|
+ font-family: 'codystar'; }
|
|
515
|
+
|
|
516
|
+ .raleway {
|
|
517
|
+ font-family: 'raleway+dots'; }
|