/*!
|
|
* # Semantic UI 2.1.6 - Container
|
|
* http://github.com/semantic-org/semantic-ui/
|
|
*
|
|
*
|
|
* Copyright 2015 Contributors
|
|
* Released under the MIT license
|
|
* http://opensource.org/licenses/MIT
|
|
*
|
|
*/
|
|
|
|
|
|
/*******************************
|
|
Container
|
|
*******************************/
|
|
|
|
|
|
/* All Sizes */
|
|
.ui.container {
|
|
display: block;
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
/* Mobile */
|
|
@media only screen and (max-width: 687px) {
|
|
.ui.container {
|
|
width: auto !important;
|
|
margin-left: 1em !important;
|
|
margin-right: 1em !important;
|
|
}
|
|
.ui.grid.container {
|
|
width: auto !important;
|
|
}
|
|
.ui.relaxed.grid.container {
|
|
width: auto !important;
|
|
}
|
|
.ui.very.relaxed.grid.container {
|
|
width: auto !important;
|
|
}
|
|
}
|
|
|
|
/* Tablet */
|
|
@media only screen and (min-width: 688px) and (max-width: 687px) {
|
|
.ui.container {
|
|
width: 645px;
|
|
margin-left: auto !important;
|
|
margin-right: auto !important;
|
|
}
|
|
.ui.grid.container {
|
|
width: calc( 645px + 2rem ) !important;
|
|
}
|
|
.ui.relaxed.grid.container {
|
|
width: calc( 645px + 3rem ) !important;
|
|
}
|
|
.ui.very.relaxed.grid.container {
|
|
width: calc( 645px + 5rem ) !important;
|
|
}
|
|
}
|
|
|
|
/* Small Monitor */
|
|
@media only screen and (min-width: 688px) and (max-width: 687px) {
|
|
.ui.container {
|
|
width: 632px;
|
|
margin-left: auto !important;
|
|
margin-right: auto !important;
|
|
}
|
|
.ui.grid.container {
|
|
width: calc( 632px + 2rem ) !important;
|
|
}
|
|
.ui.relaxed.grid.container {
|
|
width: calc( 632px + 3rem ) !important;
|
|
}
|
|
.ui.very.relaxed.grid.container {
|
|
width: calc( 632px + 5rem ) !important;
|
|
}
|
|
}
|
|
|
|
/* Large Monitor */
|
|
@media only screen and (min-width: 688px) {
|
|
.ui.container {
|
|
width: 619px;
|
|
margin-left: auto !important;
|
|
margin-right: auto !important;
|
|
}
|
|
.ui.grid.container {
|
|
width: calc( 619px + 2rem ) !important;
|
|
}
|
|
.ui.relaxed.grid.container {
|
|
width: calc( 619px + 3rem ) !important;
|
|
}
|
|
.ui.very.relaxed.grid.container {
|
|
width: calc( 619px + 5rem ) !important;
|
|
}
|
|
}
|
|
|
|
|
|
/*******************************
|
|
Types
|
|
*******************************/
|
|
|
|
|
|
/* Text Container */
|
|
.ui.text.container {
|
|
font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
|
max-width: 700px !important;
|
|
line-height: 1.5;
|
|
}
|
|
.ui.text.container {
|
|
font-size: 1.15384615rem;
|
|
}
|
|
|
|
/* Fluid */
|
|
.ui.fluid.container {
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
/*******************************
|
|
Variations
|
|
*******************************/
|
|
|
|
.ui[class*="left aligned"].container {
|
|
text-align: left;
|
|
}
|
|
.ui[class*="center aligned"].container {
|
|
text-align: center;
|
|
}
|
|
.ui[class*="right aligned"].container {
|
|
text-align: right;
|
|
}
|
|
.ui.justified.container {
|
|
text-align: justify;
|
|
-webkit-hyphens: auto;
|
|
-moz-hyphens: auto;
|
|
-ms-hyphens: auto;
|
|
hyphens: auto;
|
|
}
|
|
|
|
|
|
/*******************************
|
|
Site Overrides
|
|
*******************************/
|
|
|