apollo-grid 1.0.0.pre.alpha.3
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.
- checksums.yaml +7 -0
- data/lib/Col/index.js +182 -0
- data/lib/Container/index.js +74 -0
- data/lib/Row/index.js +67 -0
- data/lib/components/Col/index.js +182 -0
- data/lib/components/Container/index.js +74 -0
- data/lib/components/Row/index.js +67 -0
- data/lib/style.css +725 -0
- data/lib/style.scss +48 -0
- data/lib/styles/grid.scss +86 -0
- data/lib/styles/mixins/breakpoints.scss +98 -0
- data/lib/styles/mixins/clearfix.scss +7 -0
- data/lib/styles/mixins/grid-framework.scss +50 -0
- data/lib/styles/mixins/grid.scss +76 -0
- data/lib/styles/variables.scss +11 -0
- metadata +58 -0
@@ -0,0 +1,74 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
|
7
|
+
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
8
|
+
|
9
|
+
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
10
|
+
|
11
|
+
var _classnames = require('classnames');
|
12
|
+
|
13
|
+
var _classnames2 = _interopRequireDefault(_classnames);
|
14
|
+
|
15
|
+
var _react = require('react');
|
16
|
+
|
17
|
+
var _react2 = _interopRequireDefault(_react);
|
18
|
+
|
19
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
20
|
+
|
21
|
+
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
|
22
|
+
|
23
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
24
|
+
|
25
|
+
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
|
26
|
+
|
27
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
28
|
+
|
29
|
+
/**
|
30
|
+
* Component representing a container from a layout grid.
|
31
|
+
*
|
32
|
+
* @extends Component
|
33
|
+
*/
|
34
|
+
|
35
|
+
var Container = function (_Component) {
|
36
|
+
_inherits(Container, _Component);
|
37
|
+
|
38
|
+
function Container() {
|
39
|
+
_classCallCheck(this, Container);
|
40
|
+
|
41
|
+
return _possibleConstructorReturn(this, Object.getPrototypeOf(Container).apply(this, arguments));
|
42
|
+
}
|
43
|
+
|
44
|
+
_createClass(Container, [{
|
45
|
+
key: 'render',
|
46
|
+
value: function render() {
|
47
|
+
var _props = this.props;
|
48
|
+
var children = _props.children;
|
49
|
+
var className = _props.className;
|
50
|
+
var fluid = _props.fluid;
|
51
|
+
|
52
|
+
var rest = _objectWithoutProperties(_props, ['children', 'className', 'fluid']);
|
53
|
+
|
54
|
+
return _react2.default.createElement(
|
55
|
+
'div',
|
56
|
+
_extends({}, rest, { className: (0, _classnames2.default)({
|
57
|
+
'container': !fluid,
|
58
|
+
'container-fluid': fluid
|
59
|
+
}, className) }),
|
60
|
+
children
|
61
|
+
);
|
62
|
+
}
|
63
|
+
}]);
|
64
|
+
|
65
|
+
return Container;
|
66
|
+
}(_react.Component);
|
67
|
+
|
68
|
+
Container.propTypes = {
|
69
|
+
|
70
|
+
// Set the container as fluid.
|
71
|
+
fluid: _react.PropTypes.bool
|
72
|
+
};
|
73
|
+
exports.default = Container;
|
74
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,67 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
|
7
|
+
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
8
|
+
|
9
|
+
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
10
|
+
|
11
|
+
var _classnames = require('classnames');
|
12
|
+
|
13
|
+
var _classnames2 = _interopRequireDefault(_classnames);
|
14
|
+
|
15
|
+
var _react = require('react');
|
16
|
+
|
17
|
+
var _react2 = _interopRequireDefault(_react);
|
18
|
+
|
19
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
20
|
+
|
21
|
+
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
|
22
|
+
|
23
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
24
|
+
|
25
|
+
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
|
26
|
+
|
27
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
28
|
+
|
29
|
+
/**
|
30
|
+
* Component representing a row from a layout grid.
|
31
|
+
* In order to work properly it needs to be wrapped inside a <Container/> component.
|
32
|
+
*
|
33
|
+
* @extends Component
|
34
|
+
*/
|
35
|
+
|
36
|
+
var Row = function (_Component) {
|
37
|
+
_inherits(Row, _Component);
|
38
|
+
|
39
|
+
function Row() {
|
40
|
+
_classCallCheck(this, Row);
|
41
|
+
|
42
|
+
return _possibleConstructorReturn(this, Object.getPrototypeOf(Row).apply(this, arguments));
|
43
|
+
}
|
44
|
+
|
45
|
+
_createClass(Row, [{
|
46
|
+
key: 'render',
|
47
|
+
value: function render() {
|
48
|
+
var _props = this.props;
|
49
|
+
var children = _props.children;
|
50
|
+
var className = _props.className;
|
51
|
+
|
52
|
+
var rest = _objectWithoutProperties(_props, ['children', 'className']);
|
53
|
+
|
54
|
+
return _react2.default.createElement(
|
55
|
+
'div',
|
56
|
+
_extends({ className: (0, _classnames2.default)('row', className)
|
57
|
+
}, rest),
|
58
|
+
children
|
59
|
+
);
|
60
|
+
}
|
61
|
+
}]);
|
62
|
+
|
63
|
+
return Row;
|
64
|
+
}(_react.Component);
|
65
|
+
|
66
|
+
exports.default = Row;
|
67
|
+
module.exports = exports['default'];
|
data/lib/style.css
ADDED
@@ -0,0 +1,725 @@
|
|
1
|
+
/**
|
2
|
+
* Apollo Grid
|
3
|
+
*
|
4
|
+
* Actually, this project is a port of Bootstrap 4 grid system for React but is aimed to evolve in its own path.
|
5
|
+
* That's why you will find similarities with Bootstrap in here.
|
6
|
+
*/
|
7
|
+
/**
|
8
|
+
* Grid breakpoints
|
9
|
+
*
|
10
|
+
* Define the minimum and maximum dimensions at which your layout will change,
|
11
|
+
* adapting to different screen sizes, for use in media queries.
|
12
|
+
*/
|
13
|
+
/**
|
14
|
+
* Grid containers
|
15
|
+
*
|
16
|
+
* Define the maximum width of `.container` for different screen sizes.
|
17
|
+
*/
|
18
|
+
/**
|
19
|
+
* Grid columns
|
20
|
+
*
|
21
|
+
* Set the number of columns and specify the width of the gutters.
|
22
|
+
*/
|
23
|
+
/**
|
24
|
+
* Grid structure options.
|
25
|
+
*/
|
26
|
+
/**
|
27
|
+
* Grid configuration.
|
28
|
+
*/
|
29
|
+
/**
|
30
|
+
* Maximum breakpoint width. Null for the largest (last) breakpoint.
|
31
|
+
* The maximum value is calculated as the minimum of the next one less 0.1.
|
32
|
+
*
|
33
|
+
* >> breakpoint-max(sm, (xs: 0, sm: 544px, md: 768px))
|
34
|
+
* 767px
|
35
|
+
*/
|
36
|
+
/**
|
37
|
+
* Minimum breakpoint width. Null for the smallest (first) breakpoint.
|
38
|
+
*
|
39
|
+
* >> breakpoint-min(sm, (xs: 0, sm: 544px, md: 768px))
|
40
|
+
* 544px
|
41
|
+
*/
|
42
|
+
/**
|
43
|
+
* Breakpoint viewport sizes and media queries.
|
44
|
+
* Breakpoints are defined as a map of (name: minimum width), order from small to large:
|
45
|
+
*
|
46
|
+
* (xs: 0, sm: 544px, md: 768px)
|
47
|
+
*
|
48
|
+
* The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.
|
49
|
+
* Name of the next breakpoint, or null for the last breakpoint.
|
50
|
+
*
|
51
|
+
* >> breakpoint-next(sm)
|
52
|
+
* md
|
53
|
+
* >> breakpoint-next(sm, (xs: 0, sm: 544px, md: 768px))
|
54
|
+
* md
|
55
|
+
* >> breakpoint-next(sm, $breakpoint-names: (xs sm md))
|
56
|
+
* md
|
57
|
+
*/
|
58
|
+
/**
|
59
|
+
* Media that spans multiple breakpoint widths.
|
60
|
+
* Makes the @content apply between the min and max breakpoints.
|
61
|
+
*/
|
62
|
+
/**
|
63
|
+
* Media of at most the maximum breakpoint width. No query for the largest breakpoint.
|
64
|
+
* Makes the @content apply to the given breakpoint and narrower.
|
65
|
+
*/
|
66
|
+
/**
|
67
|
+
* Media between the breakpoint's minimum and maximum widths.
|
68
|
+
* No minimum for the smallest breakpoint, and no maximum for the largest one.
|
69
|
+
* Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
|
70
|
+
*/
|
71
|
+
/**
|
72
|
+
* Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
|
73
|
+
* Makes the @content apply to the given breakpoint and wider.
|
74
|
+
*/
|
75
|
+
/**
|
76
|
+
* Used to generate the correct number of grid classes given any value of `$grid-columns`.
|
77
|
+
*/
|
78
|
+
/**
|
79
|
+
* Generate semantic grid columns with these mixins.
|
80
|
+
*/
|
81
|
+
/**
|
82
|
+
* For each breakpoint, define the maximum width of the container in a media query.
|
83
|
+
*/
|
84
|
+
/**
|
85
|
+
* Set the container width, and set media queries behavior for it.
|
86
|
+
*/
|
87
|
+
.container {
|
88
|
+
margin-left: auto;
|
89
|
+
margin-right: auto;
|
90
|
+
padding-left: 0.9375rem;
|
91
|
+
padding-right: 0.9375rem; }
|
92
|
+
.container::after {
|
93
|
+
clear: both;
|
94
|
+
content: '';
|
95
|
+
display: table; }
|
96
|
+
@media (min-width: 544px) {
|
97
|
+
.container {
|
98
|
+
max-width: 576px; } }
|
99
|
+
@media (min-width: 768px) {
|
100
|
+
.container {
|
101
|
+
max-width: 720px; } }
|
102
|
+
@media (min-width: 992px) {
|
103
|
+
.container {
|
104
|
+
max-width: 940px; } }
|
105
|
+
@media (min-width: 1200px) {
|
106
|
+
.container {
|
107
|
+
max-width: 1140px; } }
|
108
|
+
|
109
|
+
/**
|
110
|
+
* Utilizes the mixin meant for fixed width containers, but without any defined
|
111
|
+
* width for fluid, full width layouts.
|
112
|
+
*/
|
113
|
+
.container-fluid {
|
114
|
+
margin-left: auto;
|
115
|
+
margin-right: auto;
|
116
|
+
padding-left: 0.9375rem;
|
117
|
+
padding-right: 0.9375rem; }
|
118
|
+
.container-fluid::after {
|
119
|
+
clear: both;
|
120
|
+
content: '';
|
121
|
+
display: table; }
|
122
|
+
|
123
|
+
/**
|
124
|
+
* Rows contain and clear the floats of your columns.
|
125
|
+
*/
|
126
|
+
.row {
|
127
|
+
margin-left: -0.9375rem;
|
128
|
+
margin-right: -0.9375rem; }
|
129
|
+
.row::after {
|
130
|
+
clear: both;
|
131
|
+
content: '';
|
132
|
+
display: table; }
|
133
|
+
|
134
|
+
/**
|
135
|
+
* Common styles for small and large grid columns.
|
136
|
+
*/
|
137
|
+
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
|
138
|
+
min-height: 1px;
|
139
|
+
padding-left: 0.9375rem;
|
140
|
+
padding-right: 0.9375rem;
|
141
|
+
position: relative; }
|
142
|
+
|
143
|
+
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
|
144
|
+
float: left; }
|
145
|
+
|
146
|
+
.col-xs-1 {
|
147
|
+
width: 8.33333%; }
|
148
|
+
|
149
|
+
.col-xs-2 {
|
150
|
+
width: 16.66667%; }
|
151
|
+
|
152
|
+
.col-xs-3 {
|
153
|
+
width: 25%; }
|
154
|
+
|
155
|
+
.col-xs-4 {
|
156
|
+
width: 33.33333%; }
|
157
|
+
|
158
|
+
.col-xs-5 {
|
159
|
+
width: 41.66667%; }
|
160
|
+
|
161
|
+
.col-xs-6 {
|
162
|
+
width: 50%; }
|
163
|
+
|
164
|
+
.col-xs-7 {
|
165
|
+
width: 58.33333%; }
|
166
|
+
|
167
|
+
.col-xs-8 {
|
168
|
+
width: 66.66667%; }
|
169
|
+
|
170
|
+
.col-xs-9 {
|
171
|
+
width: 75%; }
|
172
|
+
|
173
|
+
.col-xs-10 {
|
174
|
+
width: 83.33333%; }
|
175
|
+
|
176
|
+
.col-xs-11 {
|
177
|
+
width: 91.66667%; }
|
178
|
+
|
179
|
+
.col-xs-12 {
|
180
|
+
width: 100%; }
|
181
|
+
|
182
|
+
.col-xs-pull-0 {
|
183
|
+
right: auto; }
|
184
|
+
|
185
|
+
.col-xs-pull-1 {
|
186
|
+
right: 8.33333%; }
|
187
|
+
|
188
|
+
.col-xs-pull-2 {
|
189
|
+
right: 16.66667%; }
|
190
|
+
|
191
|
+
.col-xs-pull-3 {
|
192
|
+
right: 25%; }
|
193
|
+
|
194
|
+
.col-xs-pull-4 {
|
195
|
+
right: 33.33333%; }
|
196
|
+
|
197
|
+
.col-xs-pull-5 {
|
198
|
+
right: 41.66667%; }
|
199
|
+
|
200
|
+
.col-xs-pull-6 {
|
201
|
+
right: 50%; }
|
202
|
+
|
203
|
+
.col-xs-pull-7 {
|
204
|
+
right: 58.33333%; }
|
205
|
+
|
206
|
+
.col-xs-pull-8 {
|
207
|
+
right: 66.66667%; }
|
208
|
+
|
209
|
+
.col-xs-pull-9 {
|
210
|
+
right: 75%; }
|
211
|
+
|
212
|
+
.col-xs-pull-10 {
|
213
|
+
right: 83.33333%; }
|
214
|
+
|
215
|
+
.col-xs-pull-11 {
|
216
|
+
right: 91.66667%; }
|
217
|
+
|
218
|
+
.col-xs-pull-12 {
|
219
|
+
right: 100%; }
|
220
|
+
|
221
|
+
.col-xs-push-0 {
|
222
|
+
left: auto; }
|
223
|
+
|
224
|
+
.col-xs-push-1 {
|
225
|
+
left: 8.33333%; }
|
226
|
+
|
227
|
+
.col-xs-push-2 {
|
228
|
+
left: 16.66667%; }
|
229
|
+
|
230
|
+
.col-xs-push-3 {
|
231
|
+
left: 25%; }
|
232
|
+
|
233
|
+
.col-xs-push-4 {
|
234
|
+
left: 33.33333%; }
|
235
|
+
|
236
|
+
.col-xs-push-5 {
|
237
|
+
left: 41.66667%; }
|
238
|
+
|
239
|
+
.col-xs-push-6 {
|
240
|
+
left: 50%; }
|
241
|
+
|
242
|
+
.col-xs-push-7 {
|
243
|
+
left: 58.33333%; }
|
244
|
+
|
245
|
+
.col-xs-push-8 {
|
246
|
+
left: 66.66667%; }
|
247
|
+
|
248
|
+
.col-xs-push-9 {
|
249
|
+
left: 75%; }
|
250
|
+
|
251
|
+
.col-xs-push-10 {
|
252
|
+
left: 83.33333%; }
|
253
|
+
|
254
|
+
.col-xs-push-11 {
|
255
|
+
left: 91.66667%; }
|
256
|
+
|
257
|
+
.col-xs-push-12 {
|
258
|
+
left: 100%; }
|
259
|
+
|
260
|
+
.col-xs-offset-0 {
|
261
|
+
margin-left: 0%; }
|
262
|
+
|
263
|
+
.col-xs-offset-1 {
|
264
|
+
margin-left: 8.33333%; }
|
265
|
+
|
266
|
+
.col-xs-offset-2 {
|
267
|
+
margin-left: 16.66667%; }
|
268
|
+
|
269
|
+
.col-xs-offset-3 {
|
270
|
+
margin-left: 25%; }
|
271
|
+
|
272
|
+
.col-xs-offset-4 {
|
273
|
+
margin-left: 33.33333%; }
|
274
|
+
|
275
|
+
.col-xs-offset-5 {
|
276
|
+
margin-left: 41.66667%; }
|
277
|
+
|
278
|
+
.col-xs-offset-6 {
|
279
|
+
margin-left: 50%; }
|
280
|
+
|
281
|
+
.col-xs-offset-7 {
|
282
|
+
margin-left: 58.33333%; }
|
283
|
+
|
284
|
+
.col-xs-offset-8 {
|
285
|
+
margin-left: 66.66667%; }
|
286
|
+
|
287
|
+
.col-xs-offset-9 {
|
288
|
+
margin-left: 75%; }
|
289
|
+
|
290
|
+
.col-xs-offset-10 {
|
291
|
+
margin-left: 83.33333%; }
|
292
|
+
|
293
|
+
.col-xs-offset-11 {
|
294
|
+
margin-left: 91.66667%; }
|
295
|
+
|
296
|
+
.col-xs-offset-12 {
|
297
|
+
margin-left: 100%; }
|
298
|
+
|
299
|
+
@media (min-width: 544px) {
|
300
|
+
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
|
301
|
+
float: left; }
|
302
|
+
.col-sm-1 {
|
303
|
+
width: 8.33333%; }
|
304
|
+
.col-sm-2 {
|
305
|
+
width: 16.66667%; }
|
306
|
+
.col-sm-3 {
|
307
|
+
width: 25%; }
|
308
|
+
.col-sm-4 {
|
309
|
+
width: 33.33333%; }
|
310
|
+
.col-sm-5 {
|
311
|
+
width: 41.66667%; }
|
312
|
+
.col-sm-6 {
|
313
|
+
width: 50%; }
|
314
|
+
.col-sm-7 {
|
315
|
+
width: 58.33333%; }
|
316
|
+
.col-sm-8 {
|
317
|
+
width: 66.66667%; }
|
318
|
+
.col-sm-9 {
|
319
|
+
width: 75%; }
|
320
|
+
.col-sm-10 {
|
321
|
+
width: 83.33333%; }
|
322
|
+
.col-sm-11 {
|
323
|
+
width: 91.66667%; }
|
324
|
+
.col-sm-12 {
|
325
|
+
width: 100%; }
|
326
|
+
.col-sm-pull-0 {
|
327
|
+
right: auto; }
|
328
|
+
.col-sm-pull-1 {
|
329
|
+
right: 8.33333%; }
|
330
|
+
.col-sm-pull-2 {
|
331
|
+
right: 16.66667%; }
|
332
|
+
.col-sm-pull-3 {
|
333
|
+
right: 25%; }
|
334
|
+
.col-sm-pull-4 {
|
335
|
+
right: 33.33333%; }
|
336
|
+
.col-sm-pull-5 {
|
337
|
+
right: 41.66667%; }
|
338
|
+
.col-sm-pull-6 {
|
339
|
+
right: 50%; }
|
340
|
+
.col-sm-pull-7 {
|
341
|
+
right: 58.33333%; }
|
342
|
+
.col-sm-pull-8 {
|
343
|
+
right: 66.66667%; }
|
344
|
+
.col-sm-pull-9 {
|
345
|
+
right: 75%; }
|
346
|
+
.col-sm-pull-10 {
|
347
|
+
right: 83.33333%; }
|
348
|
+
.col-sm-pull-11 {
|
349
|
+
right: 91.66667%; }
|
350
|
+
.col-sm-pull-12 {
|
351
|
+
right: 100%; }
|
352
|
+
.col-sm-push-0 {
|
353
|
+
left: auto; }
|
354
|
+
.col-sm-push-1 {
|
355
|
+
left: 8.33333%; }
|
356
|
+
.col-sm-push-2 {
|
357
|
+
left: 16.66667%; }
|
358
|
+
.col-sm-push-3 {
|
359
|
+
left: 25%; }
|
360
|
+
.col-sm-push-4 {
|
361
|
+
left: 33.33333%; }
|
362
|
+
.col-sm-push-5 {
|
363
|
+
left: 41.66667%; }
|
364
|
+
.col-sm-push-6 {
|
365
|
+
left: 50%; }
|
366
|
+
.col-sm-push-7 {
|
367
|
+
left: 58.33333%; }
|
368
|
+
.col-sm-push-8 {
|
369
|
+
left: 66.66667%; }
|
370
|
+
.col-sm-push-9 {
|
371
|
+
left: 75%; }
|
372
|
+
.col-sm-push-10 {
|
373
|
+
left: 83.33333%; }
|
374
|
+
.col-sm-push-11 {
|
375
|
+
left: 91.66667%; }
|
376
|
+
.col-sm-push-12 {
|
377
|
+
left: 100%; }
|
378
|
+
.col-sm-offset-0 {
|
379
|
+
margin-left: 0%; }
|
380
|
+
.col-sm-offset-1 {
|
381
|
+
margin-left: 8.33333%; }
|
382
|
+
.col-sm-offset-2 {
|
383
|
+
margin-left: 16.66667%; }
|
384
|
+
.col-sm-offset-3 {
|
385
|
+
margin-left: 25%; }
|
386
|
+
.col-sm-offset-4 {
|
387
|
+
margin-left: 33.33333%; }
|
388
|
+
.col-sm-offset-5 {
|
389
|
+
margin-left: 41.66667%; }
|
390
|
+
.col-sm-offset-6 {
|
391
|
+
margin-left: 50%; }
|
392
|
+
.col-sm-offset-7 {
|
393
|
+
margin-left: 58.33333%; }
|
394
|
+
.col-sm-offset-8 {
|
395
|
+
margin-left: 66.66667%; }
|
396
|
+
.col-sm-offset-9 {
|
397
|
+
margin-left: 75%; }
|
398
|
+
.col-sm-offset-10 {
|
399
|
+
margin-left: 83.33333%; }
|
400
|
+
.col-sm-offset-11 {
|
401
|
+
margin-left: 91.66667%; }
|
402
|
+
.col-sm-offset-12 {
|
403
|
+
margin-left: 100%; } }
|
404
|
+
|
405
|
+
@media (min-width: 768px) {
|
406
|
+
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
|
407
|
+
float: left; }
|
408
|
+
.col-md-1 {
|
409
|
+
width: 8.33333%; }
|
410
|
+
.col-md-2 {
|
411
|
+
width: 16.66667%; }
|
412
|
+
.col-md-3 {
|
413
|
+
width: 25%; }
|
414
|
+
.col-md-4 {
|
415
|
+
width: 33.33333%; }
|
416
|
+
.col-md-5 {
|
417
|
+
width: 41.66667%; }
|
418
|
+
.col-md-6 {
|
419
|
+
width: 50%; }
|
420
|
+
.col-md-7 {
|
421
|
+
width: 58.33333%; }
|
422
|
+
.col-md-8 {
|
423
|
+
width: 66.66667%; }
|
424
|
+
.col-md-9 {
|
425
|
+
width: 75%; }
|
426
|
+
.col-md-10 {
|
427
|
+
width: 83.33333%; }
|
428
|
+
.col-md-11 {
|
429
|
+
width: 91.66667%; }
|
430
|
+
.col-md-12 {
|
431
|
+
width: 100%; }
|
432
|
+
.col-md-pull-0 {
|
433
|
+
right: auto; }
|
434
|
+
.col-md-pull-1 {
|
435
|
+
right: 8.33333%; }
|
436
|
+
.col-md-pull-2 {
|
437
|
+
right: 16.66667%; }
|
438
|
+
.col-md-pull-3 {
|
439
|
+
right: 25%; }
|
440
|
+
.col-md-pull-4 {
|
441
|
+
right: 33.33333%; }
|
442
|
+
.col-md-pull-5 {
|
443
|
+
right: 41.66667%; }
|
444
|
+
.col-md-pull-6 {
|
445
|
+
right: 50%; }
|
446
|
+
.col-md-pull-7 {
|
447
|
+
right: 58.33333%; }
|
448
|
+
.col-md-pull-8 {
|
449
|
+
right: 66.66667%; }
|
450
|
+
.col-md-pull-9 {
|
451
|
+
right: 75%; }
|
452
|
+
.col-md-pull-10 {
|
453
|
+
right: 83.33333%; }
|
454
|
+
.col-md-pull-11 {
|
455
|
+
right: 91.66667%; }
|
456
|
+
.col-md-pull-12 {
|
457
|
+
right: 100%; }
|
458
|
+
.col-md-push-0 {
|
459
|
+
left: auto; }
|
460
|
+
.col-md-push-1 {
|
461
|
+
left: 8.33333%; }
|
462
|
+
.col-md-push-2 {
|
463
|
+
left: 16.66667%; }
|
464
|
+
.col-md-push-3 {
|
465
|
+
left: 25%; }
|
466
|
+
.col-md-push-4 {
|
467
|
+
left: 33.33333%; }
|
468
|
+
.col-md-push-5 {
|
469
|
+
left: 41.66667%; }
|
470
|
+
.col-md-push-6 {
|
471
|
+
left: 50%; }
|
472
|
+
.col-md-push-7 {
|
473
|
+
left: 58.33333%; }
|
474
|
+
.col-md-push-8 {
|
475
|
+
left: 66.66667%; }
|
476
|
+
.col-md-push-9 {
|
477
|
+
left: 75%; }
|
478
|
+
.col-md-push-10 {
|
479
|
+
left: 83.33333%; }
|
480
|
+
.col-md-push-11 {
|
481
|
+
left: 91.66667%; }
|
482
|
+
.col-md-push-12 {
|
483
|
+
left: 100%; }
|
484
|
+
.col-md-offset-0 {
|
485
|
+
margin-left: 0%; }
|
486
|
+
.col-md-offset-1 {
|
487
|
+
margin-left: 8.33333%; }
|
488
|
+
.col-md-offset-2 {
|
489
|
+
margin-left: 16.66667%; }
|
490
|
+
.col-md-offset-3 {
|
491
|
+
margin-left: 25%; }
|
492
|
+
.col-md-offset-4 {
|
493
|
+
margin-left: 33.33333%; }
|
494
|
+
.col-md-offset-5 {
|
495
|
+
margin-left: 41.66667%; }
|
496
|
+
.col-md-offset-6 {
|
497
|
+
margin-left: 50%; }
|
498
|
+
.col-md-offset-7 {
|
499
|
+
margin-left: 58.33333%; }
|
500
|
+
.col-md-offset-8 {
|
501
|
+
margin-left: 66.66667%; }
|
502
|
+
.col-md-offset-9 {
|
503
|
+
margin-left: 75%; }
|
504
|
+
.col-md-offset-10 {
|
505
|
+
margin-left: 83.33333%; }
|
506
|
+
.col-md-offset-11 {
|
507
|
+
margin-left: 91.66667%; }
|
508
|
+
.col-md-offset-12 {
|
509
|
+
margin-left: 100%; } }
|
510
|
+
|
511
|
+
@media (min-width: 992px) {
|
512
|
+
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
|
513
|
+
float: left; }
|
514
|
+
.col-lg-1 {
|
515
|
+
width: 8.33333%; }
|
516
|
+
.col-lg-2 {
|
517
|
+
width: 16.66667%; }
|
518
|
+
.col-lg-3 {
|
519
|
+
width: 25%; }
|
520
|
+
.col-lg-4 {
|
521
|
+
width: 33.33333%; }
|
522
|
+
.col-lg-5 {
|
523
|
+
width: 41.66667%; }
|
524
|
+
.col-lg-6 {
|
525
|
+
width: 50%; }
|
526
|
+
.col-lg-7 {
|
527
|
+
width: 58.33333%; }
|
528
|
+
.col-lg-8 {
|
529
|
+
width: 66.66667%; }
|
530
|
+
.col-lg-9 {
|
531
|
+
width: 75%; }
|
532
|
+
.col-lg-10 {
|
533
|
+
width: 83.33333%; }
|
534
|
+
.col-lg-11 {
|
535
|
+
width: 91.66667%; }
|
536
|
+
.col-lg-12 {
|
537
|
+
width: 100%; }
|
538
|
+
.col-lg-pull-0 {
|
539
|
+
right: auto; }
|
540
|
+
.col-lg-pull-1 {
|
541
|
+
right: 8.33333%; }
|
542
|
+
.col-lg-pull-2 {
|
543
|
+
right: 16.66667%; }
|
544
|
+
.col-lg-pull-3 {
|
545
|
+
right: 25%; }
|
546
|
+
.col-lg-pull-4 {
|
547
|
+
right: 33.33333%; }
|
548
|
+
.col-lg-pull-5 {
|
549
|
+
right: 41.66667%; }
|
550
|
+
.col-lg-pull-6 {
|
551
|
+
right: 50%; }
|
552
|
+
.col-lg-pull-7 {
|
553
|
+
right: 58.33333%; }
|
554
|
+
.col-lg-pull-8 {
|
555
|
+
right: 66.66667%; }
|
556
|
+
.col-lg-pull-9 {
|
557
|
+
right: 75%; }
|
558
|
+
.col-lg-pull-10 {
|
559
|
+
right: 83.33333%; }
|
560
|
+
.col-lg-pull-11 {
|
561
|
+
right: 91.66667%; }
|
562
|
+
.col-lg-pull-12 {
|
563
|
+
right: 100%; }
|
564
|
+
.col-lg-push-0 {
|
565
|
+
left: auto; }
|
566
|
+
.col-lg-push-1 {
|
567
|
+
left: 8.33333%; }
|
568
|
+
.col-lg-push-2 {
|
569
|
+
left: 16.66667%; }
|
570
|
+
.col-lg-push-3 {
|
571
|
+
left: 25%; }
|
572
|
+
.col-lg-push-4 {
|
573
|
+
left: 33.33333%; }
|
574
|
+
.col-lg-push-5 {
|
575
|
+
left: 41.66667%; }
|
576
|
+
.col-lg-push-6 {
|
577
|
+
left: 50%; }
|
578
|
+
.col-lg-push-7 {
|
579
|
+
left: 58.33333%; }
|
580
|
+
.col-lg-push-8 {
|
581
|
+
left: 66.66667%; }
|
582
|
+
.col-lg-push-9 {
|
583
|
+
left: 75%; }
|
584
|
+
.col-lg-push-10 {
|
585
|
+
left: 83.33333%; }
|
586
|
+
.col-lg-push-11 {
|
587
|
+
left: 91.66667%; }
|
588
|
+
.col-lg-push-12 {
|
589
|
+
left: 100%; }
|
590
|
+
.col-lg-offset-0 {
|
591
|
+
margin-left: 0%; }
|
592
|
+
.col-lg-offset-1 {
|
593
|
+
margin-left: 8.33333%; }
|
594
|
+
.col-lg-offset-2 {
|
595
|
+
margin-left: 16.66667%; }
|
596
|
+
.col-lg-offset-3 {
|
597
|
+
margin-left: 25%; }
|
598
|
+
.col-lg-offset-4 {
|
599
|
+
margin-left: 33.33333%; }
|
600
|
+
.col-lg-offset-5 {
|
601
|
+
margin-left: 41.66667%; }
|
602
|
+
.col-lg-offset-6 {
|
603
|
+
margin-left: 50%; }
|
604
|
+
.col-lg-offset-7 {
|
605
|
+
margin-left: 58.33333%; }
|
606
|
+
.col-lg-offset-8 {
|
607
|
+
margin-left: 66.66667%; }
|
608
|
+
.col-lg-offset-9 {
|
609
|
+
margin-left: 75%; }
|
610
|
+
.col-lg-offset-10 {
|
611
|
+
margin-left: 83.33333%; }
|
612
|
+
.col-lg-offset-11 {
|
613
|
+
margin-left: 91.66667%; }
|
614
|
+
.col-lg-offset-12 {
|
615
|
+
margin-left: 100%; } }
|
616
|
+
|
617
|
+
@media (min-width: 1200px) {
|
618
|
+
.col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
|
619
|
+
float: left; }
|
620
|
+
.col-xl-1 {
|
621
|
+
width: 8.33333%; }
|
622
|
+
.col-xl-2 {
|
623
|
+
width: 16.66667%; }
|
624
|
+
.col-xl-3 {
|
625
|
+
width: 25%; }
|
626
|
+
.col-xl-4 {
|
627
|
+
width: 33.33333%; }
|
628
|
+
.col-xl-5 {
|
629
|
+
width: 41.66667%; }
|
630
|
+
.col-xl-6 {
|
631
|
+
width: 50%; }
|
632
|
+
.col-xl-7 {
|
633
|
+
width: 58.33333%; }
|
634
|
+
.col-xl-8 {
|
635
|
+
width: 66.66667%; }
|
636
|
+
.col-xl-9 {
|
637
|
+
width: 75%; }
|
638
|
+
.col-xl-10 {
|
639
|
+
width: 83.33333%; }
|
640
|
+
.col-xl-11 {
|
641
|
+
width: 91.66667%; }
|
642
|
+
.col-xl-12 {
|
643
|
+
width: 100%; }
|
644
|
+
.col-xl-pull-0 {
|
645
|
+
right: auto; }
|
646
|
+
.col-xl-pull-1 {
|
647
|
+
right: 8.33333%; }
|
648
|
+
.col-xl-pull-2 {
|
649
|
+
right: 16.66667%; }
|
650
|
+
.col-xl-pull-3 {
|
651
|
+
right: 25%; }
|
652
|
+
.col-xl-pull-4 {
|
653
|
+
right: 33.33333%; }
|
654
|
+
.col-xl-pull-5 {
|
655
|
+
right: 41.66667%; }
|
656
|
+
.col-xl-pull-6 {
|
657
|
+
right: 50%; }
|
658
|
+
.col-xl-pull-7 {
|
659
|
+
right: 58.33333%; }
|
660
|
+
.col-xl-pull-8 {
|
661
|
+
right: 66.66667%; }
|
662
|
+
.col-xl-pull-9 {
|
663
|
+
right: 75%; }
|
664
|
+
.col-xl-pull-10 {
|
665
|
+
right: 83.33333%; }
|
666
|
+
.col-xl-pull-11 {
|
667
|
+
right: 91.66667%; }
|
668
|
+
.col-xl-pull-12 {
|
669
|
+
right: 100%; }
|
670
|
+
.col-xl-push-0 {
|
671
|
+
left: auto; }
|
672
|
+
.col-xl-push-1 {
|
673
|
+
left: 8.33333%; }
|
674
|
+
.col-xl-push-2 {
|
675
|
+
left: 16.66667%; }
|
676
|
+
.col-xl-push-3 {
|
677
|
+
left: 25%; }
|
678
|
+
.col-xl-push-4 {
|
679
|
+
left: 33.33333%; }
|
680
|
+
.col-xl-push-5 {
|
681
|
+
left: 41.66667%; }
|
682
|
+
.col-xl-push-6 {
|
683
|
+
left: 50%; }
|
684
|
+
.col-xl-push-7 {
|
685
|
+
left: 58.33333%; }
|
686
|
+
.col-xl-push-8 {
|
687
|
+
left: 66.66667%; }
|
688
|
+
.col-xl-push-9 {
|
689
|
+
left: 75%; }
|
690
|
+
.col-xl-push-10 {
|
691
|
+
left: 83.33333%; }
|
692
|
+
.col-xl-push-11 {
|
693
|
+
left: 91.66667%; }
|
694
|
+
.col-xl-push-12 {
|
695
|
+
left: 100%; }
|
696
|
+
.col-xl-offset-0 {
|
697
|
+
margin-left: 0%; }
|
698
|
+
.col-xl-offset-1 {
|
699
|
+
margin-left: 8.33333%; }
|
700
|
+
.col-xl-offset-2 {
|
701
|
+
margin-left: 16.66667%; }
|
702
|
+
.col-xl-offset-3 {
|
703
|
+
margin-left: 25%; }
|
704
|
+
.col-xl-offset-4 {
|
705
|
+
margin-left: 33.33333%; }
|
706
|
+
.col-xl-offset-5 {
|
707
|
+
margin-left: 41.66667%; }
|
708
|
+
.col-xl-offset-6 {
|
709
|
+
margin-left: 50%; }
|
710
|
+
.col-xl-offset-7 {
|
711
|
+
margin-left: 58.33333%; }
|
712
|
+
.col-xl-offset-8 {
|
713
|
+
margin-left: 66.66667%; }
|
714
|
+
.col-xl-offset-9 {
|
715
|
+
margin-left: 75%; }
|
716
|
+
.col-xl-offset-10 {
|
717
|
+
margin-left: 83.33333%; }
|
718
|
+
.col-xl-offset-11 {
|
719
|
+
margin-left: 91.66667%; }
|
720
|
+
.col-xl-offset-12 {
|
721
|
+
margin-left: 100%; } }
|
722
|
+
|
723
|
+
/**
|
724
|
+
* Custom styles for additional flex alignment options.
|
725
|
+
*/
|