PluginProbe
Gridable / trunk
Gridable vtrunk
1.2.12 1.2.11 trunk 0.1.0 0.5.0 1.0.0 1.1.0 1.2.0 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9
gridable / public / css / gridable-style.css

gridable-style.css in Gridable trunk, at public/css/gridable-style.css

103 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* ==========================================================================
2 #THE DEFAULT GRIDABLE GRID
3 ========================================================================== */
4 /**
5 * All of the CSS for your public-facing functionality should be
6 * included in this file.
7 */
8 .gridable--row {
9 display: flex;
10 flex-flow: row wrap;
11 justify-content: space-between;
12 overflow: hidden;
13 margin-left: -20px; }
14
15 .gridable--col {
16 flex: 0 0 100%;
17 width: 100%;
18 max-width: 100%;
19 padding-left: 20px; }
20 @media only screen and (max-width: 1024px) {
21 .gridable--col.is-empty {
22 display: none; } }
23
24 .gridable--col.col-1 {
25 flex-basis: 8.33333%;
26 width: 8.33333%;
27 max-width: 8.33333%; }
28
29 .gridable--col.col-2 {
30 flex-basis: 16.66667%;
31 width: 16.66667%;
32 max-width: 16.66667%; }
33
34 .gridable--col.col-3 {
35 flex-basis: 25%;
36 width: 25%;
37 max-width: 25%; }
38
39 .gridable--col.col-4 {
40 flex-basis: 33.33333%;
41 width: 33.33333%;
42 max-width: 33.33333%; }
43
44 .gridable--col.col-5 {
45 flex-basis: 41.66667%;
46 width: 41.66667%;
47 max-width: 41.66667%; }
48
49 .gridable--col.col-6 {
50 flex-basis: 50%;
51 width: 50%;
52 max-width: 50%; }
53
54 .gridable--col.col-7 {
55 flex-basis: 58.33333%;
56 width: 58.33333%;
57 max-width: 58.33333%; }
58
59 .gridable--col.col-8 {
60 flex-basis: 66.66667%;
61 width: 66.66667%;
62 max-width: 66.66667%; }
63
64 .gridable--col.col-9 {
65 flex-basis: 75%;
66 width: 75%;
67 max-width: 75%; }
68
69 .gridable--col.col-10 {
70 flex-basis: 83.33333%;
71 width: 83.33333%;
72 max-width: 83.33333%; }
73
74 .gridable--col.col-11 {
75 flex-basis: 91.66667%;
76 width: 91.66667%;
77 max-width: 91.66667%; }
78
79 .gridable--col.col-12 {
80 flex-basis: 100%;
81 width: 100%;
82 max-width: 100%; }
83
84 @media only screen and (max-width: 1024px) {
85 .gridable--col[class*="col-"] {
86 flex-basis: 100%;
87 width: 100%;
88 max-width: 100%; } }
89
90 .gridable--col {
91 overflow: hidden;
92 box-sizing: border-box; }
93
94 /* Rows and Columns Style Variants.
95 ========================================================================== */
96 .row-style--boxed {
97 background-color: #eef1f2; }
98
99 .col-style--boxed {
100 background-color: #23252d; }
101 .col-style--boxed * {
102 color: white; }
103