mithril-materialized 0.19.6 → 1.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/README.md +6 -2
  2. package/dist/autocomplete.d.ts +14 -7
  3. package/dist/button.d.ts +40 -40
  4. package/dist/carousel.d.ts +38 -18
  5. package/dist/chip.d.ts +31 -11
  6. package/dist/code-block.d.ts +8 -9
  7. package/dist/collapsible.d.ts +26 -22
  8. package/dist/collection.d.ts +49 -49
  9. package/dist/dropdown.d.ts +45 -46
  10. package/dist/floating-action-button.d.ts +37 -34
  11. package/dist/icon.d.ts +11 -11
  12. package/dist/index.css +7968 -2
  13. package/dist/index.d.ts +26 -28
  14. package/dist/index.esm.js +4211 -2
  15. package/dist/index.js +4265 -2
  16. package/dist/index.umd.js +4269 -2
  17. package/dist/input-options.d.ts +85 -81
  18. package/dist/input.d.ts +47 -42
  19. package/dist/label.d.ts +21 -22
  20. package/dist/material-box.d.ts +38 -21
  21. package/dist/material-icon.d.ts +14 -0
  22. package/dist/modal.d.ts +41 -26
  23. package/dist/option.d.ts +61 -52
  24. package/dist/pagination.d.ts +16 -20
  25. package/dist/parallax.d.ts +14 -13
  26. package/dist/pickers.d.ts +130 -8
  27. package/dist/radio.d.ts +41 -37
  28. package/dist/search-select.d.ts +41 -0
  29. package/dist/select.d.ts +46 -45
  30. package/dist/switch.d.ts +12 -13
  31. package/dist/tabs.d.ts +57 -45
  32. package/dist/utils.d.ts +43 -70
  33. package/package.json +55 -16
  34. package/sass/components/_badges.scss +59 -0
  35. package/sass/components/_buttons.scss +327 -0
  36. package/sass/components/_cards.scss +197 -0
  37. package/sass/components/_carousel.scss +92 -0
  38. package/sass/components/_chips.scss +92 -0
  39. package/sass/components/_collapsible.scss +94 -0
  40. package/sass/components/_color-classes.scss +34 -0
  41. package/sass/components/_color-variables.scss +371 -0
  42. package/sass/components/_datepicker.scss +251 -0
  43. package/sass/components/_dropdown.scss +90 -0
  44. package/sass/components/_global.scss +775 -0
  45. package/sass/components/_grid.scss +160 -0
  46. package/sass/components/_icons-material-design.scss +5 -0
  47. package/sass/components/_materialbox.scss +43 -0
  48. package/sass/components/_modal.scss +97 -0
  49. package/sass/components/_navbar.scss +211 -0
  50. package/sass/components/_normalize.scss +447 -0
  51. package/sass/components/_preloader.scss +336 -0
  52. package/sass/components/_pulse.scss +34 -0
  53. package/sass/components/_sidenav.scss +213 -0
  54. package/sass/components/_slider.scss +94 -0
  55. package/sass/components/_table_of_contents.scss +36 -0
  56. package/sass/components/_tabs.scss +102 -0
  57. package/sass/components/_tapTarget.scss +105 -0
  58. package/sass/components/_timepicker.scss +170 -0
  59. package/sass/components/_toast.scss +61 -0
  60. package/sass/components/_tooltip.scss +32 -0
  61. package/sass/components/_transitions.scss +13 -0
  62. package/sass/components/_typography.scss +61 -0
  63. package/sass/components/_variables.scss +352 -0
  64. package/sass/components/_waves.scss +114 -0
  65. package/sass/components/forms/_checkboxes.scss +203 -0
  66. package/sass/components/forms/_file-input.scss +50 -0
  67. package/sass/components/forms/_form-groups.scss +28 -0
  68. package/sass/components/forms/_forms.scss +24 -0
  69. package/sass/components/forms/_input-fields.scss +361 -0
  70. package/sass/components/forms/_radio-buttons.scss +118 -0
  71. package/sass/components/forms/_range.scss +164 -0
  72. package/sass/components/forms/_select.scss +193 -0
  73. package/sass/components/forms/_switches.scss +92 -0
  74. package/sass/materialize.scss +41 -0
  75. package/dist/index.css.map +0 -1
  76. package/dist/index.esm.js.map +0 -1
  77. package/dist/index.js.map +0 -1
  78. package/dist/index.modern.js +0 -2
  79. package/dist/index.modern.js.map +0 -1
  80. package/dist/index.umd.js.map +0 -1
  81. package/dist/kanban.d.ts +0 -47
  82. package/dist/layout-form-generator.d.ts +0 -75
  83. package/dist/map-editor.d.ts +0 -63
  84. package/dist/timeline.d.ts +0 -24
@@ -0,0 +1,775 @@
1
+ @use "sass:color";
2
+ @use "color-variables";
3
+ @use "variables";
4
+
5
+ //Default styles
6
+
7
+ html {
8
+ box-sizing: border-box;
9
+ }
10
+ *, *:before, *:after {
11
+ box-sizing: inherit;
12
+ }
13
+
14
+ body {
15
+ // display: flex;
16
+ // min-height: 100vh;
17
+ // flex-direction: column;
18
+ }
19
+
20
+ main {
21
+ // flex: 1 0 auto;
22
+ }
23
+
24
+ button,
25
+ input,
26
+ optgroup,
27
+ select,
28
+ textarea {
29
+ font-family: variables.$font-stack;
30
+ }
31
+
32
+ ul {
33
+ &:not(.browser-default) {
34
+ padding-left: 0;
35
+ list-style-type: none;
36
+
37
+ & > li {
38
+ list-style-type: none;
39
+ }
40
+ }
41
+ }
42
+
43
+ a {
44
+ color: variables.$link-color;
45
+ text-decoration: none;
46
+
47
+ // Gets rid of tap active state
48
+ -webkit-tap-highlight-color: transparent;
49
+ }
50
+
51
+
52
+ // Positioning
53
+ .valign-wrapper {
54
+ display: flex;
55
+ align-items: center;
56
+ }
57
+
58
+
59
+ // classic clearfix
60
+ .clearfix {
61
+ clear: both;
62
+ }
63
+
64
+
65
+ // Z-levels
66
+ .z-depth-0 {
67
+ box-shadow: none !important;
68
+ }
69
+
70
+ /* 2dp elevation modified*/
71
+ .z-depth-1 {
72
+ box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),
73
+ 0 3px 1px -2px rgba(0,0,0,0.12),
74
+ 0 1px 5px 0 rgba(0,0,0,0.2);
75
+ }
76
+ .z-depth-1-half {
77
+ box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
78
+ }
79
+
80
+ /* 6dp elevation modified*/
81
+ .z-depth-2 {
82
+ box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14),
83
+ 0 1px 10px 0 rgba(0,0,0,0.12),
84
+ 0 2px 4px -1px rgba(0,0,0,0.3);
85
+ }
86
+
87
+ /* 12dp elevation modified*/
88
+ .z-depth-3 {
89
+ box-shadow: 0 8px 17px 2px rgba(0,0,0,0.14),
90
+ 0 3px 14px 2px rgba(0,0,0,0.12),
91
+ 0 5px 5px -3px rgba(0, 0, 0, 0.2);
92
+ }
93
+
94
+ /* 16dp elevation */
95
+ .z-depth-4 {
96
+ box-shadow: 0 16px 24px 2px rgba(0,0,0,0.14),
97
+ 0 6px 30px 5px rgba(0,0,0,0.12),
98
+ 0 8px 10px -7px rgba(0,0,0,0.2);
99
+ }
100
+
101
+ /* 24dp elevation */
102
+ .z-depth-5 {
103
+ box-shadow: 0 24px 38px 3px rgba(0,0,0,0.14),
104
+ 0 9px 46px 8px rgba(0,0,0,0.12),
105
+ 0 11px 15px -7px rgba(0,0,0,0.2);
106
+ }
107
+
108
+ .hoverable {
109
+ transition: box-shadow .25s;
110
+
111
+ &:hover {
112
+ box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
113
+ }
114
+ }
115
+
116
+ // Dividers
117
+
118
+ .divider {
119
+ height: 1px;
120
+ overflow: hidden;
121
+ background-color: color-variables.color("grey", "lighten-2");
122
+ }
123
+
124
+
125
+ // Blockquote
126
+
127
+ blockquote {
128
+ margin: 20px 0;
129
+ padding-left: 1.5rem;
130
+ border-left: 5px solid variables.$primary-color;
131
+ }
132
+
133
+ // Icon Styles
134
+
135
+ i {
136
+ line-height: inherit;
137
+
138
+ &.left {
139
+ float: left;
140
+ margin-right: 15px;
141
+ }
142
+ &.right {
143
+ float: right;
144
+ margin-left: 15px;
145
+ }
146
+ &.tiny {
147
+ font-size: 1rem;
148
+ }
149
+ &.small {
150
+ font-size: 2rem;
151
+ }
152
+ &.medium {
153
+ font-size: 4rem;
154
+ }
155
+ &.large {
156
+ font-size: 6rem;
157
+ }
158
+ }
159
+
160
+ // Images
161
+ img.responsive-img,
162
+ video.responsive-video {
163
+ max-width: 100%;
164
+ height: auto;
165
+ }
166
+
167
+
168
+ // Pagination
169
+
170
+ .pagination {
171
+
172
+ li {
173
+ display: inline-block;
174
+ border-radius: 2px;
175
+ text-align: center;
176
+ vertical-align: top;
177
+ height: 30px;
178
+
179
+ a {
180
+ color: #444;
181
+ display: inline-block;
182
+ font-size: 1.2rem;
183
+ padding: 0 10px;
184
+ line-height: 30px;
185
+ }
186
+
187
+ &.active a { color: #fff; }
188
+
189
+ &.active { background-color: variables.$primary-color; }
190
+
191
+ &.disabled a {
192
+ cursor: default;
193
+ color: #999;
194
+ }
195
+
196
+ i {
197
+ font-size: 2rem;
198
+ }
199
+ }
200
+
201
+
202
+ li.pages ul li {
203
+ display: inline-block;
204
+ float: none;
205
+ }
206
+ }
207
+ @media #{variables.$medium-and-down} {
208
+ .pagination {
209
+ width: 100%;
210
+
211
+ li.prev,
212
+ li.next {
213
+ width: 10%;
214
+ }
215
+
216
+ li.pages {
217
+ width: 80%;
218
+ overflow: hidden;
219
+ white-space: nowrap;
220
+ }
221
+ }
222
+ }
223
+
224
+ // Breadcrumbs
225
+ .breadcrumb {
226
+ display: inline-block;
227
+ font-size: 18px;
228
+ color: rgba(255,255,255, .7);
229
+
230
+ i,
231
+ [class^="mdi-"], [class*="mdi-"],
232
+ i.material-icons {
233
+ display: inline-block;
234
+ float: left;
235
+ font-size: 24px;
236
+ }
237
+
238
+ &:before {
239
+ content: '\E5CC';
240
+ color: rgba(255,255,255, .7);
241
+ vertical-align: top;
242
+ display: inline-block;
243
+ font-family: 'Material Icons';
244
+ font-weight: normal;
245
+ font-style: normal;
246
+ font-size: 25px;
247
+ margin: 0 10px 0 8px;
248
+ -webkit-font-smoothing: antialiased;
249
+ float: left;
250
+ }
251
+
252
+ &:first-child:before {
253
+ display: none;
254
+ }
255
+
256
+ &:last-child {
257
+ color: #fff;
258
+ }
259
+ }
260
+
261
+ // Parallax
262
+ .parallax-container {
263
+ position: relative;
264
+ overflow: hidden;
265
+ height: 500px;
266
+
267
+ .parallax {
268
+ position: absolute;
269
+ top: 0;
270
+ left: 0;
271
+ right: 0;
272
+ bottom: 0;
273
+ z-index: -1;
274
+
275
+ img {
276
+ opacity: 0;
277
+ position: absolute;
278
+ left: 50%;
279
+ bottom: 0;
280
+ min-width: 100%;
281
+ min-height: 100%;
282
+ transform: translate3d(0,0,0);
283
+ transform: translateX(-50%);
284
+ }
285
+ }
286
+ }
287
+
288
+ // Pushpin
289
+ .pin-top, .pin-bottom {
290
+ position: relative;
291
+ }
292
+ .pinned {
293
+ position: fixed !important;
294
+ }
295
+
296
+ /*********************
297
+ Transition Classes
298
+ **********************/
299
+
300
+ ul.staggered-list li {
301
+ opacity: 0;
302
+ }
303
+
304
+ .fade-in {
305
+ opacity: 0;
306
+ transform-origin: 0 50%;
307
+ }
308
+
309
+
310
+ /*********************
311
+ Media Query Classes
312
+ **********************/
313
+ .hide-on-small-only, .hide-on-small-and-down {
314
+ @media #{variables.$small-and-down} {
315
+ display: none !important;
316
+ }
317
+ }
318
+ .hide-on-med-and-down {
319
+ @media #{variables.$medium-and-down} {
320
+ display: none !important;
321
+ }
322
+ }
323
+ .hide-on-med-and-up {
324
+ @media #{variables.$medium-and-up} {
325
+ display: none !important;
326
+ }
327
+ }
328
+ .hide-on-med-only {
329
+ @media only screen and (min-width: variables.$small-screen) and (max-width: variables.$medium-screen) {
330
+ display: none !important;
331
+ }
332
+ }
333
+ .hide-on-large-only {
334
+ @media #{variables.$large-and-up} {
335
+ display: none !important;
336
+ }
337
+ }
338
+ .hide-on-extra-large-only {
339
+ @media #{variables.$extra-large-and-up} {
340
+ display: none !important;
341
+ }
342
+ }
343
+ .show-on-extra-large {
344
+ @media #{variables.$extra-large-and-up} {
345
+ display: block !important;
346
+ }
347
+ }
348
+ .show-on-large {
349
+ @media #{variables.$large-and-up} {
350
+ display: block !important;
351
+ }
352
+ }
353
+ .show-on-medium {
354
+ @media only screen and (min-width: variables.$small-screen) and (max-width: variables.$medium-screen) {
355
+ display: block !important;
356
+ }
357
+ }
358
+ .show-on-small {
359
+ @media #{variables.$small-and-down} {
360
+ display: block !important;
361
+ }
362
+ }
363
+ .show-on-medium-and-up {
364
+ @media #{variables.$medium-and-up} {
365
+ display: block !important;
366
+ }
367
+ }
368
+ .show-on-medium-and-down {
369
+ @media #{variables.$medium-and-down} {
370
+ display: block !important;
371
+ }
372
+ }
373
+
374
+
375
+ // Center text on mobile
376
+ .center-on-small-only {
377
+ @media #{variables.$small-and-down} {
378
+ text-align: center;
379
+ }
380
+ }
381
+
382
+ // Footer
383
+ .page-footer {
384
+ padding-top: 20px;
385
+ color: variables.$footer-font-color;
386
+ background-color: variables.$footer-bg-color;
387
+
388
+ .footer-copyright {
389
+ overflow: hidden;
390
+ min-height: 50px;
391
+ display: flex;
392
+ align-items: center;
393
+ justify-content: space-between;
394
+ padding: 10px 0px;
395
+ color: variables.$footer-copyright-font-color;
396
+ background-color: variables.$footer-copyright-bg-color;
397
+ }
398
+ }
399
+
400
+ // Tables
401
+ table, th, td {
402
+ border: none;
403
+ }
404
+
405
+ table {
406
+ width:100%;
407
+ display: table;
408
+ border-collapse: collapse;
409
+ border-spacing: 0;
410
+
411
+ &.striped {
412
+ tr {
413
+ border-bottom: none;
414
+ }
415
+
416
+ > tbody {
417
+ > tr:nth-child(odd) {
418
+ background-color: variables.$table-striped-color;
419
+ }
420
+
421
+ > tr > td {
422
+ border-radius: 0;
423
+ }
424
+ }
425
+ }
426
+
427
+ &.highlight > tbody > tr {
428
+ transition: background-color .25s ease;
429
+ &:hover {
430
+ background-color: variables.$table-striped-color;
431
+ }
432
+ }
433
+
434
+ &.centered {
435
+ thead tr th, tbody tr td {
436
+ text-align: center;
437
+ }
438
+ }
439
+ }
440
+
441
+ tr {
442
+ border-bottom: 1px solid variables.$table-border-color;
443
+ }
444
+
445
+ td, th{
446
+ padding: 15px 5px;
447
+ display: table-cell;
448
+ text-align: left;
449
+ vertical-align: middle;
450
+ border-radius: 2px;
451
+ }
452
+
453
+ // Responsive Table
454
+ @media #{variables.$medium-and-down} {
455
+
456
+ table.responsive-table {
457
+ width: 100%;
458
+ border-collapse: collapse;
459
+ border-spacing: 0;
460
+ display: block;
461
+ position: relative;
462
+
463
+ td:empty:before {
464
+ content: '\00a0';
465
+ }
466
+
467
+ th,
468
+ td {
469
+ margin: 0;
470
+ vertical-align: top;
471
+ }
472
+
473
+ th { text-align: left; }
474
+ thead {
475
+ display: block;
476
+ float: left;
477
+
478
+ tr {
479
+ display: block;
480
+ padding: 0 10px 0 0;
481
+
482
+ th::before {
483
+ content: "\00a0";
484
+ }
485
+ }
486
+ }
487
+ tbody {
488
+ display: block;
489
+ width: auto;
490
+ position: relative;
491
+ overflow-x: auto;
492
+ white-space: nowrap;
493
+
494
+ tr {
495
+ display: inline-block;
496
+ vertical-align: top;
497
+ }
498
+ }
499
+ th {
500
+ display: block;
501
+ text-align: right;
502
+ }
503
+ td {
504
+ display: block;
505
+ min-height: 1.25em;
506
+ text-align: left;
507
+ }
508
+ tr {
509
+ border-bottom: none;
510
+ padding: 0 10px;
511
+ }
512
+
513
+ /* sort out borders */
514
+ thead {
515
+ border: 0;
516
+ border-right: 1px solid variables.$table-border-color;
517
+ }
518
+ }
519
+
520
+ }
521
+
522
+
523
+ // Collections
524
+ .collection {
525
+ margin: variables.$element-top-margin 0 variables.$element-bottom-margin 0;
526
+ border: 1px solid variables.$collection-border-color;
527
+ border-radius: 2px;
528
+ overflow: hidden;
529
+ position: relative;
530
+
531
+ .collection-item {
532
+ background-color: variables.$collection-bg-color;
533
+ line-height: variables.$collection-line-height;
534
+ padding: 10px 20px;
535
+ margin: 0;
536
+ border-bottom: 1px solid variables.$collection-border-color;
537
+
538
+ // Avatar Collection
539
+ &.avatar {
540
+ min-height: 84px;
541
+ padding-left: 72px;
542
+ position: relative;
543
+
544
+ // Don't style circles inside preloader classes.
545
+ &:not(.circle-clipper) > .circle,
546
+ :not(.circle-clipper) > .circle {
547
+ position: absolute;
548
+ width: 42px;
549
+ height: 42px;
550
+ overflow: hidden;
551
+ left: 15px;
552
+ display: inline-block;
553
+ vertical-align: middle;
554
+ }
555
+ i.circle {
556
+ font-size: 18px;
557
+ line-height: 42px;
558
+ color: #fff;
559
+ background-color: #999;
560
+ text-align: center;
561
+ }
562
+
563
+
564
+ .title {
565
+ font-size: 16px;
566
+ }
567
+
568
+ p {
569
+ margin: 0;
570
+ }
571
+
572
+ .secondary-content {
573
+ position: absolute;
574
+ top: 16px;
575
+ right: 16px;
576
+ }
577
+
578
+ }
579
+
580
+
581
+ &:last-child {
582
+ border-bottom: none;
583
+ }
584
+
585
+ &.active {
586
+ background-color: variables.$collection-active-bg-color;
587
+ color: variables.$collection-active-color;
588
+
589
+ .secondary-content {
590
+ color: #fff;
591
+ }
592
+ }
593
+ }
594
+ a.collection-item{
595
+ display: block;
596
+ transition: .25s;
597
+ color: variables.$collection-link-color;
598
+ &:not(.active) {
599
+ &:hover {
600
+ background-color: variables.$collection-hover-bg-color;
601
+ }
602
+ }
603
+ }
604
+
605
+ &.with-header {
606
+ .collection-header {
607
+ background-color: variables.$collection-bg-color;
608
+ border-bottom: 1px solid variables.$collection-border-color;
609
+ padding: 10px 20px;
610
+ }
611
+ .collection-item {
612
+ padding-left: 30px;
613
+ }
614
+ .collection-item.avatar {
615
+ padding-left: 72px;
616
+ }
617
+ }
618
+
619
+ }
620
+ // Made less specific to allow easier overriding
621
+ .secondary-content {
622
+ float: right;
623
+ color: variables.$secondary-color;
624
+ }
625
+ .collapsible .collection {
626
+ margin: 0;
627
+ border: none;
628
+ }
629
+
630
+
631
+
632
+ // Responsive Videos
633
+ .video-container {
634
+ position: relative;
635
+ padding-bottom: 56.25%;
636
+ height: 0;
637
+ overflow: hidden;
638
+
639
+ iframe, object, embed {
640
+ position: absolute;
641
+ top: 0;
642
+ left: 0;
643
+ width: 100%;
644
+ height: 100%;
645
+ }
646
+ }
647
+
648
+ // Progress Bar
649
+ .progress {
650
+ position: relative;
651
+ height: 4px;
652
+ display: block;
653
+ width: 100%;
654
+ background-color: color.adjust(variables.$progress-bar-color, $lightness: 40%);
655
+ border-radius: 2px;
656
+ margin: variables.$element-top-margin 0 variables.$element-bottom-margin 0;
657
+ overflow: hidden;
658
+ .determinate {
659
+ position: absolute;
660
+ top: 0;
661
+ left: 0;
662
+ bottom: 0;
663
+ background-color: variables.$progress-bar-color;
664
+ transition: width .3s linear;
665
+ }
666
+ .indeterminate {
667
+ background-color: variables.$progress-bar-color;
668
+ &:before {
669
+ content: '';
670
+ position: absolute;
671
+ background-color: inherit;
672
+ top: 0;
673
+ left:0;
674
+ bottom: 0;
675
+ will-change: left, right;
676
+ // Custom bezier
677
+ animation: indeterminate 2.1s cubic-bezier(0.650, 0.815, 0.735, 0.395) infinite;
678
+
679
+ }
680
+ &:after {
681
+ content: '';
682
+ position: absolute;
683
+ background-color: inherit;
684
+ top: 0;
685
+ left:0;
686
+ bottom: 0;
687
+ will-change: left, right;
688
+ // Custom bezier
689
+ animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.840, 0.440, 1.000) infinite;
690
+ animation-delay: 1.15s;
691
+ }
692
+ }
693
+ }
694
+ @keyframes indeterminate {
695
+ 0% {
696
+ left: -35%;
697
+ right:100%;
698
+ }
699
+ 60% {
700
+ left: 100%;
701
+ right: -90%;
702
+ }
703
+ 100% {
704
+ left: 100%;
705
+ right: -90%;
706
+ }
707
+ }
708
+
709
+ @keyframes indeterminate-short {
710
+ 0% {
711
+ left: -200%;
712
+ right: 100%;
713
+ }
714
+ 60% {
715
+ left: 107%;
716
+ right: -8%;
717
+ }
718
+ 100% {
719
+ left: 107%;
720
+ right: -8%;
721
+ }
722
+ }
723
+
724
+
725
+ /*******************
726
+ Utility Classes
727
+ *******************/
728
+
729
+ .hide {
730
+ display: none !important;
731
+ }
732
+
733
+ // Text Align
734
+ .left-align {
735
+ text-align: left;
736
+ }
737
+ .right-align {
738
+ text-align: right
739
+ }
740
+ .center, .center-align {
741
+ text-align: center;
742
+ }
743
+
744
+ .left {
745
+ float: left !important;
746
+ }
747
+ .right {
748
+ float: right !important;
749
+ }
750
+
751
+ // No Text Select
752
+ .no-select {
753
+ user-select: none;
754
+ }
755
+
756
+ .circle {
757
+ border-radius: 50%;
758
+ }
759
+
760
+ .center-block {
761
+ display: block;
762
+ margin-left: auto;
763
+ margin-right: auto;
764
+ }
765
+
766
+ .truncate {
767
+ display: block;
768
+ white-space: nowrap;
769
+ overflow: hidden;
770
+ text-overflow: ellipsis;
771
+ }
772
+
773
+ .no-padding {
774
+ padding: 0 !important;
775
+ }