PluginProbe
Strong Testimonials / 2.33
Strong Testimonials v2.33
3.3.7 3.3.6 3.3.5 3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.0.1 2.30.9 2.31.10 2.32 2.32.1 2.32.2 2.32.3 2.32.4 2.33 2.34 2.35 2.36 2.37 2.38 2.38.1 2.39 2.39.1 All 101 releases
strong-testimonials / admin / scss / _partials / _layout-example-grid.scss
_layout-example-grid.scss
34 lines 565 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* --------------------------------------------------
2 Grid
3 -------------------------------------------------- */
4
5 .view-layout-grid .example-container {
6 display: -webkit-flex;
7 display: -ms-flexbox;
8 display: flex;
9
10 -webkit-flex-wrap: wrap;
11 -ms-flex-wrap: wrap;
12 flex-wrap: wrap;
13
14 justify-content: space-between;
15
16 .box {
17 display: -webkit-flex;
18 display: -ms-flexbox;
19 display: flex;
20 }
21
22 &.col-2 .box {
23 width: 47%;
24 }
25
26 &.col-3 .box {
27 width: 29%;
28 }
29
30 &.col-4 .box {
31 width: 21%;
32 }
33 }
34