2017-02-08 11:43:28 -05:00
|
|
|
// ==========================================================================
|
|
|
|
|
// Objects / Container
|
|
|
|
|
// ==========================================================================
|
|
|
|
|
|
|
|
|
|
// Page-level constraining and wrapping elements.
|
|
|
|
|
//
|
|
|
|
|
// > In programming languages the word *container* is generally used for structures
|
|
|
|
|
// that can contain more than one element.
|
|
|
|
|
// > A *wrapper* instead is something that wraps around a single object to provide
|
|
|
|
|
// more functionalities and interfaces to it.
|
|
|
|
|
// @link http://stackoverflow.com/a/13202141/140357
|
2016-12-18 15:45:44 -05:00
|
|
|
|
2015-11-16 17:28:51 -05:00
|
|
|
.o-container {
|
2017-04-27 16:00:45 -04:00
|
|
|
margin-right: auto;
|
|
|
|
|
margin-left: auto;
|
2023-02-09 10:18:47 -05:00
|
|
|
padding-left: var(--grid-margin);
|
|
|
|
|
padding-right: var(--grid-margin);
|
2015-02-15 15:44:11 -05:00
|
|
|
}
|