dae-material 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +3 -0
  5. data/CODE_OF_CONDUCT.md +13 -0
  6. data/Gemfile +4 -0
  7. data/README.md +39 -0
  8. data/Rakefile +1 -0
  9. data/app/assets/fonts/material-design-icons/LICENSE.txt +428 -0
  10. data/app/assets/fonts/material-design-icons/Material-Design-Icons.eot +0 -0
  11. data/app/assets/fonts/material-design-icons/Material-Design-Icons.svg +751 -0
  12. data/app/assets/fonts/material-design-icons/Material-Design-Icons.ttf +0 -0
  13. data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff +0 -0
  14. data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff2 +0 -0
  15. data/app/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
  16. data/app/assets/fonts/roboto/Roboto-Bold.woff +0 -0
  17. data/app/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
  18. data/app/assets/fonts/roboto/Roboto-Light.ttf +0 -0
  19. data/app/assets/fonts/roboto/Roboto-Light.woff +0 -0
  20. data/app/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
  21. data/app/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
  22. data/app/assets/fonts/roboto/Roboto-Medium.woff +0 -0
  23. data/app/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
  24. data/app/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
  25. data/app/assets/fonts/roboto/Roboto-Regular.woff +0 -0
  26. data/app/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
  27. data/app/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
  28. data/app/assets/fonts/roboto/Roboto-Thin.woff +0 -0
  29. data/app/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
  30. data/app/assets/javascripts/materialize-sprockets.js +27 -0
  31. data/app/assets/javascripts/materialize.js +6023 -0
  32. data/app/assets/javascripts/materialize/animation.js +9 -0
  33. data/app/assets/javascripts/materialize/buttons.js +35 -0
  34. data/app/assets/javascripts/materialize/cards.js +27 -0
  35. data/app/assets/javascripts/materialize/character_counter.js +59 -0
  36. data/app/assets/javascripts/materialize/collapsible.js +139 -0
  37. data/app/assets/javascripts/materialize/date_picker/picker.date.js +1430 -0
  38. data/app/assets/javascripts/materialize/date_picker/picker.js +1123 -0
  39. data/app/assets/javascripts/materialize/dropdown.js +176 -0
  40. data/app/assets/javascripts/materialize/forms.js +397 -0
  41. data/app/assets/javascripts/materialize/global.js +31 -0
  42. data/app/assets/javascripts/materialize/hammer.min.js +1 -0
  43. data/app/assets/javascripts/materialize/init.js +137 -0
  44. data/app/assets/javascripts/materialize/jquery.easing.1.3.js +205 -0
  45. data/app/assets/javascripts/materialize/jquery.hammer.js +33 -0
  46. data/app/assets/javascripts/materialize/jquery.timeago.min.js +1 -0
  47. data/app/assets/javascripts/materialize/leanModal.js +139 -0
  48. data/app/assets/javascripts/materialize/materialbox.js +249 -0
  49. data/app/assets/javascripts/materialize/parallax.js +58 -0
  50. data/app/assets/javascripts/materialize/prism.js +8 -0
  51. data/app/assets/javascripts/materialize/pushpin.js +62 -0
  52. data/app/assets/javascripts/materialize/scrollFire.js +69 -0
  53. data/app/assets/javascripts/materialize/scrollspy.js +284 -0
  54. data/app/assets/javascripts/materialize/sideNav.js +335 -0
  55. data/app/assets/javascripts/materialize/slider.js +263 -0
  56. data/app/assets/javascripts/materialize/tabs.js +129 -0
  57. data/app/assets/javascripts/materialize/toasts.js +121 -0
  58. data/app/assets/javascripts/materialize/tooltip.js +166 -0
  59. data/app/assets/javascripts/materialize/transitions.js +145 -0
  60. data/app/assets/javascripts/materialize/velocity.min.js +4 -0
  61. data/app/assets/javascripts/materialize/waves.js +338 -0
  62. data/app/assets/stylesheets/materialize.scss +38 -0
  63. data/app/assets/stylesheets/materialize/components/_buttons.scss +151 -0
  64. data/app/assets/stylesheets/materialize/components/_cards.scss +150 -0
  65. data/app/assets/stylesheets/materialize/components/_collapsible.scss +88 -0
  66. data/app/assets/stylesheets/materialize/components/_color.scss +412 -0
  67. data/app/assets/stylesheets/materialize/components/_dropdown.scss +38 -0
  68. data/app/assets/stylesheets/materialize/components/_form.scss +850 -0
  69. data/app/assets/stylesheets/materialize/components/_global.scss +682 -0
  70. data/app/assets/stylesheets/materialize/components/_grid.scss +118 -0
  71. data/app/assets/stylesheets/materialize/components/_icons-material-design.scss +783 -0
  72. data/app/assets/stylesheets/materialize/components/_materialbox.scss +41 -0
  73. data/app/assets/stylesheets/materialize/components/_mixins.scss +5 -0
  74. data/app/assets/stylesheets/materialize/components/_modal.scss +89 -0
  75. data/app/assets/stylesheets/materialize/components/_navbar.scss +143 -0
  76. data/app/assets/stylesheets/materialize/components/_normalize.scss +427 -0
  77. data/app/assets/stylesheets/materialize/components/_prefixer.scss +376 -0
  78. data/app/assets/stylesheets/materialize/components/_preloader.scss +332 -0
  79. data/app/assets/stylesheets/materialize/components/_roboto.scss +38 -0
  80. data/app/assets/stylesheets/materialize/components/_sideNav.scss +111 -0
  81. data/app/assets/stylesheets/materialize/components/_slider.scss +92 -0
  82. data/app/assets/stylesheets/materialize/components/_table_of_contents.scss +33 -0
  83. data/app/assets/stylesheets/materialize/components/_tabs.scss +42 -0
  84. data/app/assets/stylesheets/materialize/components/_toast.scss +63 -0
  85. data/app/assets/stylesheets/materialize/components/_tooltip.scss +34 -0
  86. data/app/assets/stylesheets/materialize/components/_typography.scss +56 -0
  87. data/app/assets/stylesheets/materialize/components/_variables.scss +143 -0
  88. data/app/assets/stylesheets/materialize/components/_waves.scss +167 -0
  89. data/app/assets/stylesheets/materialize/components/date_picker/_default.date.scss +435 -0
  90. data/app/assets/stylesheets/materialize/components/date_picker/_default.scss +201 -0
  91. data/app/assets/stylesheets/materialize/components/date_picker/_default.time.scss +125 -0
  92. data/bin/console +14 -0
  93. data/bin/setup +7 -0
  94. data/dae-material.gemspec +23 -0
  95. data/lib/dae/material.rb +7 -0
  96. data/lib/dae/material/version.rb +8 -0
  97. metadata +166 -0
@@ -0,0 +1,682 @@
1
+ @charset "UTF-8";
2
+
3
+
4
+ //Default styles
5
+
6
+ html {
7
+ box-sizing: border-box;
8
+ }
9
+ *, *:before, *:after {
10
+ box-sizing: inherit;
11
+ }
12
+
13
+ body {
14
+ // display: flex;
15
+ // min-height: 100vh;
16
+ // flex-direction: column;
17
+ }
18
+
19
+ main {
20
+ // flex: 1 0 auto;
21
+ }
22
+
23
+ ul {
24
+ list-style-type: none;
25
+ }
26
+
27
+ a {
28
+ color: $link-color;
29
+ text-decoration: none;
30
+
31
+ // Gets rid of tap active state
32
+ -webkit-tap-highlight-color: transparent;
33
+ }
34
+
35
+
36
+ // Positioning
37
+ .valign-wrapper {
38
+ @include flexbox();
39
+ @include align(center);
40
+
41
+ .valign {
42
+ display: block;
43
+ }
44
+ }
45
+
46
+
47
+ ul {
48
+ padding: 0;
49
+ li {
50
+ list-style-type: none;
51
+ }
52
+ }
53
+
54
+ // classic clearfix
55
+ .clearfix {
56
+ clear: both;
57
+ }
58
+
59
+
60
+ // Z-levels
61
+
62
+ .z-depth-1{
63
+ @include box-shadow-2(0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12));
64
+ }
65
+ .z-depth-1-half{
66
+ @include box-shadow-2(0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15));
67
+ }
68
+ .z-depth-2{
69
+ @include box-shadow-2(0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19));
70
+ }
71
+ .z-depth-3{
72
+ @include box-shadow-2(0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19));
73
+ }
74
+ .z-depth-4{
75
+ @include box-shadow-2(0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21));
76
+ }
77
+ .z-depth-5{
78
+ @include box-shadow-2(0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22));
79
+ }
80
+
81
+ // Dividers
82
+
83
+ .divider {
84
+ height: 1px;
85
+ overflow: hidden;
86
+ background-color: color("grey", "lighten-2");
87
+ }
88
+
89
+
90
+ // Blockquote
91
+
92
+ blockquote {
93
+ margin: 20px 0;
94
+ padding-left: 1.5rem;
95
+ border-left: 5px solid color("red", "lighten-3");
96
+ }
97
+
98
+ // Icon Styles
99
+
100
+ i {
101
+ line-height: inherit;
102
+
103
+ &.left {
104
+ float: left;
105
+ margin-right: 15px;
106
+ }
107
+ &.right {
108
+ float: right;
109
+ margin-left: 15px;
110
+ }
111
+ &.tiny {
112
+ font-size: 1rem;
113
+ }
114
+ &.small {
115
+ font-size: 2rem;
116
+ }
117
+ &.medium {
118
+ font-size: 4rem;
119
+ }
120
+ &.large {
121
+ font-size: 6rem;
122
+ }
123
+ }
124
+
125
+ // Images
126
+ img.responsive-img,
127
+ video.responsive-video {
128
+ max-width: 100%;
129
+ height: auto;
130
+ }
131
+
132
+
133
+ // Pagination
134
+
135
+ .pagination {
136
+
137
+ li {
138
+ font-size: 1.2rem;
139
+ float: left;
140
+ width: 30px;
141
+ height: 30px;
142
+ margin: 0 10px;
143
+ border-radius: 2px;
144
+ text-align: center;
145
+
146
+ a { color: #444; }
147
+
148
+ &.active a { color: #fff; }
149
+
150
+ &.active { background-color: $primary-color; }
151
+
152
+ &.disabled a { color: #999; }
153
+
154
+ i {
155
+ font-size: 2rem;
156
+ line-height: 1.8rem;
157
+ }
158
+ }
159
+ }
160
+
161
+
162
+ // Parallax
163
+ .parallax-container {
164
+ position: relative;
165
+ overflow: hidden;
166
+ height: 500px;
167
+ }
168
+
169
+ .parallax {
170
+ position: absolute;
171
+ top: 0;
172
+ left: 0;
173
+ right: 0;
174
+ bottom: 0;
175
+ z-index: -1;
176
+
177
+ img {
178
+ display: none;
179
+ position: absolute;
180
+ left: 50%;
181
+ bottom: 0;
182
+ min-width: 100%;
183
+ min-height: 100%;
184
+ -webkit-transform: translate3d(0,0,0);
185
+ transform: translate3d(0,0,0);
186
+ transform: translateX(-50%);
187
+ }
188
+ }
189
+
190
+ // Pushpin
191
+ .pin-top, .pin-bottom {
192
+ position: relative;
193
+ }
194
+ .pinned {
195
+ position: fixed !important;
196
+ }
197
+
198
+ /*********************
199
+ Transition Classes
200
+ **********************/
201
+
202
+ ul.staggered-list li {
203
+ opacity: 0;
204
+ }
205
+
206
+ .fade-in {
207
+ opacity: 0;
208
+ transform-origin: 0 50%;
209
+ }
210
+
211
+
212
+ /*********************
213
+ Media Query Classes
214
+ **********************/
215
+ .hide-on-small-only, .hide-on-small-and-down {
216
+ @media #{$small-and-down} {
217
+ display: none !important;
218
+ }
219
+ }
220
+ .hide-on-med-and-down {
221
+ @media #{$medium-and-down} {
222
+ display: none !important;
223
+ }
224
+ }
225
+ .hide-on-med-and-up {
226
+ @media #{$medium-and-up} {
227
+ display: none !important;
228
+ }
229
+ }
230
+ .hide-on-med-only {
231
+ @media only screen and (min-width: $small-screen) and (max-width: $medium-screen) {
232
+ display: none !important;
233
+ }
234
+ }
235
+ .hide-on-large-only {
236
+ @media #{$large-and-up} {
237
+ display: none !important;
238
+ }
239
+ }
240
+ .show-on-large {
241
+ @media #{$large-and-up} {
242
+ display: initial !important;
243
+ }
244
+ }
245
+ .show-on-medium {
246
+ @media only screen and (min-width: $small-screen) and (max-width: $medium-screen) {
247
+ display: initial !important;
248
+ }
249
+ }
250
+ .show-on-small {
251
+ @media #{$small-and-down} {
252
+ display: initial !important;
253
+ }
254
+ }
255
+ .show-on-medium-and-up {
256
+ @media #{$medium-and-up} {
257
+ display: initial !important;
258
+ }
259
+ }
260
+ .show-on-medium-and-down {
261
+ @media #{$medium-and-down} {
262
+ display: initial !important;
263
+ }
264
+ }
265
+
266
+
267
+ // Center text on mobile
268
+ .center-on-small-only {
269
+ @media #{$small-and-down} {
270
+ text-align: center;
271
+ }
272
+ }
273
+
274
+ // Footer
275
+ footer.page-footer {
276
+ margin-top: 20px;
277
+ padding-top: 20px;
278
+ background-color: $footer-bg-color;
279
+
280
+ .footer-copyright {
281
+ overflow: hidden;
282
+ height: 50px;
283
+ line-height: 50px;
284
+ color: rgba(255,255,255,.8);
285
+ background-color: rgba(51,51,51,.08);;
286
+ @extend .light;
287
+ }
288
+ }
289
+
290
+ // Tables
291
+ table, th, td {
292
+ border: none;
293
+ }
294
+
295
+ table {
296
+ width:100%;
297
+ display: table;
298
+
299
+ &.bordered tr {
300
+ border-bottom: 1px solid $table-border-color;
301
+ }
302
+
303
+ &.striped {
304
+ tbody tr:nth-child(odd) {
305
+ background-color: $table-striped-color;
306
+ }
307
+ }
308
+
309
+ &.hoverable {
310
+
311
+ tbody tr {
312
+ @include transition(background-color .25s ease);
313
+ &:hover {
314
+ background-color: $table-striped-color;
315
+ }
316
+ }
317
+ }
318
+
319
+ &.centered {
320
+ thead tr th, tbody tr td {
321
+ text-align: center;
322
+
323
+ }
324
+ }
325
+
326
+ }
327
+
328
+ thead {
329
+ border-bottom: 1px solid $table-border-color;
330
+ }
331
+
332
+ td, th{
333
+ padding: 15px 5px;
334
+ display: table-cell;
335
+ text-align: left;
336
+ vertical-align: middle;
337
+ border-radius: 2px;
338
+ }
339
+
340
+ // Responsive Table
341
+ @media #{$medium-and-down} {
342
+
343
+ table.responsive-table {
344
+ width: 100%;
345
+ border-collapse: collapse;
346
+ border-spacing: 0;
347
+ display: block;
348
+ position: relative;
349
+
350
+ th,
351
+ td {
352
+ margin: 0;
353
+ vertical-align: top;
354
+ }
355
+
356
+ th { text-align: left; }
357
+ thead {
358
+ display: block;
359
+ float: left;
360
+
361
+ tr {
362
+ display: block;
363
+ padding: 0 10px 0 0;
364
+
365
+ th::before {
366
+ content: "\00a0";
367
+ }
368
+ }
369
+ }
370
+ tbody {
371
+ display: block;
372
+ width: auto;
373
+ position: relative;
374
+ overflow-x: auto;
375
+ white-space: nowrap;
376
+
377
+ tr {
378
+ display: inline-block;
379
+ vertical-align: top;
380
+ }
381
+ }
382
+ th {
383
+ display: block;
384
+ text-align: right;
385
+ }
386
+ td {
387
+ display: block;
388
+ min-height: 1.25em;
389
+ text-align: left;
390
+ }
391
+ tr { padding: 0 10px; }
392
+
393
+ /* sort out borders */
394
+ thead {
395
+ border: 0;
396
+ border-right: 1px solid $table-border-color;
397
+ }
398
+
399
+ &.bordered {
400
+ th { border-bottom: 0; border-left: 0; }
401
+ td { border-left: 0; border-right: 0; border-bottom: 0; }
402
+ tr { border: 0; }
403
+ tbody tr { border-right: 1px solid $table-border-color; }
404
+ }
405
+
406
+ }
407
+
408
+ }
409
+
410
+
411
+ // Collections
412
+ .collection {
413
+ margin: $element-top-margin 0 $element-bottom-margin 0;
414
+ border: 1px solid $collection-border-color;
415
+ border-radius: 2px;
416
+ overflow: hidden;
417
+ position: relative;
418
+
419
+ .collection-item {
420
+ background-color: $collection-bg-color;
421
+ line-height: 1.5rem;
422
+ padding: 10px 20px;
423
+ margin: 0;
424
+ border-bottom: 1px solid $collection-border-color;
425
+
426
+ // Avatar Collection
427
+ &.avatar {
428
+ height: 84px;
429
+ padding-left: 72px;
430
+ position: relative;
431
+
432
+ .circle {
433
+ position: absolute;
434
+ width: 42px;
435
+ height: 42px;
436
+ overflow: hidden;
437
+ left: 15px;
438
+ display: inline-block;
439
+ vertical-align: middle;
440
+ }
441
+ i.circle {
442
+ font-size: 18px;
443
+ line-height: 42px;
444
+ color: #fff;
445
+ background-color: #999;
446
+ text-align: center;
447
+ }
448
+
449
+
450
+ .title {
451
+ font-size: 16px;
452
+ }
453
+
454
+ p {
455
+ margin: 0;
456
+ }
457
+
458
+ .secondary-content {
459
+ position: absolute;
460
+ top: 16px;
461
+ right: 16px;
462
+ }
463
+
464
+ }
465
+
466
+
467
+ &:last-child {
468
+ border-bottom: none;
469
+ }
470
+
471
+ &.active {
472
+ background-color: $collection-active-bg-color;
473
+ color: $collection-active-color;
474
+ }
475
+ }
476
+ a.collection-item{
477
+ display: block;
478
+ @include transition(.25s);
479
+ color: $secondary-color;
480
+ &:not(.active) {
481
+ &:hover {
482
+ background-color: $collection-hover-bg-color;
483
+ }
484
+ }
485
+ }
486
+
487
+ &.with-header {
488
+ .collection-header {
489
+ background-color: $collection-bg-color;
490
+ border-bottom: 1px solid $collection-border-color;
491
+ padding: 10px 20px;
492
+ }
493
+ .collection-item {
494
+ padding-left: 30px;
495
+ }
496
+ }
497
+
498
+ }
499
+ // Made less specific to allow easier overriding
500
+ .secondary-content {
501
+ float: right;
502
+ color: $secondary-color;
503
+ }
504
+
505
+
506
+ // Badges
507
+ span.badge {
508
+ min-width: 3rem;
509
+ padding: 0 6px;
510
+ text-align: center;
511
+ font-size: 1rem;
512
+ line-height: inherit;
513
+ color: color('grey', 'darken-1');
514
+ position: absolute;
515
+ right: 15px;
516
+ @include box-sizing(border-box);
517
+
518
+ &.new {
519
+ font-weight: 300;
520
+ font-size: 0.8rem;
521
+ color: #fff;
522
+ background-color: $badge-bg-color;
523
+ border-radius: 2px;
524
+ }
525
+ &.new:after {
526
+ content: " new";
527
+ }
528
+ }
529
+
530
+ // Responsive Videos
531
+ .video-container {
532
+ position: relative;
533
+ padding-bottom: 56.25%;
534
+ padding-top: 30px;
535
+ height: 0;
536
+ overflow: hidden;
537
+ &.no-controls {
538
+ padding-top: 0;
539
+ }
540
+
541
+ iframe, object, embed {
542
+ position: absolute;
543
+ top: 0;
544
+ left: 0;
545
+ width: 100%;
546
+ height: 100%;
547
+ }
548
+ }
549
+
550
+ // Progress Bar
551
+ .progress {
552
+ position: relative;
553
+ height: 4px;
554
+ display: block;
555
+ width: 100%;
556
+ background-color: lighten($progress-bar-color, 40%);
557
+ border-radius: 2px;
558
+ margin: $element-top-margin 0 $element-bottom-margin 0;
559
+ overflow: hidden;
560
+ .determinate {
561
+ position: absolute;
562
+ background-color: inherit;
563
+ top: 0;
564
+ bottom: 0;
565
+ background-color: $progress-bar-color;
566
+ @include transition(width .3s linear);
567
+ }
568
+ .indeterminate {
569
+ background-color: $progress-bar-color;
570
+ &:before {
571
+ content: '';
572
+ position: absolute;
573
+ background-color: inherit;
574
+ top: 0;
575
+ left:0;
576
+ bottom: 0;
577
+ will-change: left, right;
578
+ // Custom bezier
579
+ @include animation(indeterminate 2.1s cubic-bezier(0.650, 0.815, 0.735, 0.395) infinite);
580
+
581
+ }
582
+ &:after {
583
+ content: '';
584
+ position: absolute;
585
+ background-color: inherit;
586
+ top: 0;
587
+ left:0;
588
+ bottom: 0;
589
+ will-change: left, right;
590
+ // Custom bezier
591
+ @include animation(indeterminate-short 2.1s cubic-bezier(0.165, 0.840, 0.440, 1.000) infinite);
592
+ @include animation-delay(1.15s);
593
+ }
594
+ }
595
+ }
596
+ @include keyframes(indeterminate) {
597
+ 0% {
598
+ left: -35%;
599
+ right:100%;
600
+ }
601
+ 60% {
602
+ left: 100%;
603
+ right: -90%;
604
+ }
605
+ 100% {
606
+ left: 100%;
607
+ right: -90%;
608
+ }
609
+ }
610
+
611
+ @include keyframes(indeterminate-short) {
612
+ 0% {
613
+ left: -200%;
614
+ right: 100%;
615
+ }
616
+ 60% {
617
+ left: 107%;
618
+ right: -8%;
619
+ }
620
+ 100% {
621
+ left: 107%;
622
+ right: -8%;
623
+ }
624
+ }
625
+
626
+
627
+ /*******************
628
+ Utility Classes
629
+ *******************/
630
+
631
+ .hide {
632
+ display: none !important;
633
+ }
634
+
635
+ // Text Align
636
+ .left-align {
637
+ text-align: left;
638
+ }
639
+ .right-align {
640
+ text-align: right
641
+ }
642
+ .center, .center-align {
643
+ text-align: center;
644
+ }
645
+
646
+ .left {
647
+ float: left !important;
648
+ }
649
+ .right {
650
+ float: right !important;
651
+ }
652
+
653
+ // No Text Select
654
+ .no-select {
655
+ -webkit-touch-callout: none;
656
+ -webkit-user-select: none;
657
+ -khtml-user-select: none;
658
+ -moz-user-select: none;
659
+ -ms-user-select: none;
660
+ user-select: none;
661
+ }
662
+
663
+ // Circle
664
+ .circle {
665
+ border-radius: 50%;
666
+ }
667
+
668
+ .center-block {
669
+ display: block;
670
+ margin-left: auto;
671
+ margin-right: auto;
672
+ }
673
+
674
+ .truncate {
675
+ white-space: nowrap;
676
+ overflow: hidden;
677
+ text-overflow: ellipsis;
678
+ }
679
+
680
+ .no-padding {
681
+ padding: 0 !important;
682
+ }