animate.min.css
1 year ago
columns.css
1 year ago
grid.css
1 year ago
lazyload.css
1 year ago
masonry.css
1 year ago
rating-display.css
1 year ago
rating-form.css
1 year ago
slider-controls-full-buttons.css
1 year ago
slider-controls-full-buttons2.css
1 year ago
slider-controls-full-buttons3.css
1 year ago
slider-controls-full-text.css
1 year ago
slider-controls-sides-buttons-pager-buttons.css
1 year ago
slider-controls-sides-buttons-pager-text.css
1 year ago
slider-controls-sides-buttons.css
1 year ago
slider-controls-sides-buttons2-pager-buttons.css
1 year ago
slider-controls-sides-buttons2-pager-text.css
1 year ago
slider-controls-sides-buttons2.css
1 year ago
slider-controls-sides-buttons3-pager-buttons.css
1 year ago
slider-controls-sides-buttons3-pager-text.css
1 year ago
slider-controls-sides-buttons3.css
1 year ago
slider-controls-sides-inside-buttons-pager-buttons.css
1 year ago
slider-controls-sides-inside-buttons-pager-text.css
1 year ago
slider-controls-sides-inside-buttons.css
1 year ago
slider-controls-sides-inside-buttons2-pager-buttons.css
1 year ago
slider-controls-sides-inside-buttons2-pager-text.css
1 year ago
slider-controls-sides-inside-buttons2.css
1 year ago
slider-controls-sides-inside-buttons3-pager-buttons.css
1 year ago
slider-controls-sides-inside-buttons3-pager-text.css
1 year ago
slider-controls-sides-inside-buttons3.css
1 year ago
slider-controls-sides-outside-buttons-pager-buttons.css
1 year ago
slider-controls-sides-outside-buttons-pager-text.css
1 year ago
slider-controls-sides-outside-buttons.css
1 year ago
slider-controls-sides-outside-buttons2-pager-buttons.css
1 year ago
slider-controls-sides-outside-buttons2-pager-text.css
1 year ago
slider-controls-sides-outside-buttons2.css
1 year ago
slider-controls-sides-outside-buttons3-pager-buttons.css
1 year ago
slider-controls-sides-outside-buttons3-pager-text.css
1 year ago
slider-controls-sides-outside-buttons3.css
1 year ago
slider-controls-simple-buttons-pager-buttons.css
1 year ago
slider-controls-simple-buttons-pager-text.css
1 year ago
slider-controls-simple-buttons.css
1 year ago
slider-controls-simple-buttons2-pager-buttons.css
1 year ago
slider-controls-simple-buttons2-pager-text.css
1 year ago
slider-controls-simple-buttons2.css
1 year ago
slider-controls-simple-buttons3-pager-buttons.css
1 year ago
slider-controls-simple-buttons3-pager-text.css
1 year ago
slider-controls-simple-buttons3.css
1 year ago
slider-controls-simple-text-pager-buttons.css
1 year ago
slider-controls-simple-text-pager-text.css
1 year ago
slider-controls-simple-text.css
1 year ago
slider-pager-buttons.css
1 year ago
slider-pager-text.css
1 year ago
grid.css
75 lines
| 1 | /** |
| 2 | * Grid Layout for any template. |
| 3 | */ |
| 4 | |
| 5 | .strong-grid { |
| 6 | display: -webkit-flex; |
| 7 | display: -ms-flexbox; |
| 8 | display: flex; |
| 9 | |
| 10 | -webkit-flex-direction: row; |
| 11 | -ms-flex-direction: row; |
| 12 | flex-direction: row; |
| 13 | |
| 14 | -webkit-flex-wrap: wrap; |
| 15 | -ms-flex-wrap: wrap; |
| 16 | flex-wrap: wrap; |
| 17 | |
| 18 | /* to center items in a less-than-full row: */ |
| 19 | justify-content: space-around; |
| 20 | /* to left-justify items in a less-than-full row: */ |
| 21 | /*justify-content: space-between;*/ |
| 22 | } |
| 23 | |
| 24 | /* specificity required */ |
| 25 | .strong-view .strong-content.strong-grid .wpmtst-testimonial { |
| 26 | display: -webkit-flex; |
| 27 | display: -ms-flexbox; |
| 28 | display: flex; |
| 29 | margin: 0 0 20px 0; |
| 30 | } |
| 31 | |
| 32 | .strong-content.strong-grid.columns-2 .wpmtst-testimonial { |
| 33 | width: 48%; |
| 34 | } |
| 35 | |
| 36 | .strong-content.strong-grid.columns-3 .wpmtst-testimonial { |
| 37 | width: 31%; |
| 38 | } |
| 39 | |
| 40 | .strong-content.strong-grid.columns-4 .wpmtst-testimonial { |
| 41 | width: 23%; |
| 42 | } |
| 43 | |
| 44 | .strong-view .strong-content.strong-grid .wpmtst-testimonial-inner { |
| 45 | flex: 1 0 auto; |
| 46 | } |
| 47 | |
| 48 | /* either no JavaScript or no Flexbox */ |
| 49 | html.no-js .strong-grid .wpmtst-testimonial, |
| 50 | .strong-grid.noflex .wpmtst-testimonial { |
| 51 | float: left; |
| 52 | margin-right: 1%; |
| 53 | margin-left: 1%; |
| 54 | } |
| 55 | |
| 56 | html.no-js .strong-grid .wpmtst-testimonial { |
| 57 | float: left; |
| 58 | margin-right: 1%; |
| 59 | margin-left: 1%; |
| 60 | } |
| 61 | |
| 62 | /* float the last column */ |
| 63 | .strong-grid.columns-2.noflex .wpmtst-testimonial:nth-of-type(2n+2), |
| 64 | .strong-grid.columns-3.noflex .wpmtst-testimonial:nth-of-type(3n+3), |
| 65 | .strong-grid.columns-4.noflex .wpmtst-testimonial:nth-of-type(4n+4) { |
| 66 | float: right; |
| 67 | } |
| 68 | |
| 69 | /* responsive */ |
| 70 | @media only screen and (max-width: 480px) { |
| 71 | .strong-view .strong-content.strong-grid .wpmtst-testimonial { |
| 72 | width: 100%; |
| 73 | } |
| 74 | } |
| 75 |