2022-01-13 13:00:31 +00:00
|
|
|
/*!
|
2022-04-07 07:06:43 +00:00
|
|
|
* # Fomantic-UI 2.9.0-beta.274+23f6671 - Container
|
2022-01-13 13:00:31 +00:00
|
|
|
* http://github.com/fomantic/Fomantic-UI/
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Released under the MIT license
|
|
|
|
* http://opensource.org/licenses/MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************
|
|
|
|
Container
|
|
|
|
*******************************/
|
|
|
|
|
|
|
|
|
|
|
|
/* All Sizes */
|
|
|
|
.ui.container {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mobile */
|
|
|
|
@media only screen and (max-width: 767.98px) {
|
|
|
|
.ui.ui.ui.container:not(.fluid) {
|
|
|
|
width: auto;
|
|
|
|
margin-left: 1em;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
.ui.ui.ui.grid.container {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.ui.ui.ui.relaxed.grid.container {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.ui.ui.ui.very.relaxed.grid.container {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tablet */
|
|
|
|
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
|
|
|
|
.ui.ui.ui.container:not(.fluid) {
|
|
|
|
width: 723px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
.ui.ui.ui.grid.container {
|
|
|
|
width: calc(723px + 2rem);
|
|
|
|
}
|
|
|
|
.ui.ui.ui.relaxed.grid.container {
|
|
|
|
width: calc(723px + 3rem);
|
|
|
|
}
|
|
|
|
.ui.ui.ui.very.relaxed.grid.container {
|
|
|
|
width: calc(723px + 5rem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Small Monitor */
|
|
|
|
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
|
|
|
|
.ui.ui.ui.container:not(.fluid) {
|
|
|
|
width: 933px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
.ui.ui.ui.grid.container {
|
|
|
|
width: calc(933px + 2rem);
|
|
|
|
}
|
|
|
|
.ui.ui.ui.relaxed.grid.container {
|
|
|
|
width: calc(933px + 3rem);
|
|
|
|
}
|
|
|
|
.ui.ui.ui.very.relaxed.grid.container {
|
|
|
|
width: calc(933px + 5rem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Large Monitor */
|
|
|
|
@media only screen and (min-width: 1200px) {
|
|
|
|
.ui.ui.ui.container:not(.fluid) {
|
|
|
|
width: 1127px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
.ui.ui.ui.grid.container {
|
|
|
|
width: calc(1127px + 2rem);
|
|
|
|
}
|
|
|
|
.ui.ui.ui.relaxed.grid.container {
|
|
|
|
width: calc(1127px + 3rem);
|
|
|
|
}
|
|
|
|
.ui.ui.ui.very.relaxed.grid.container {
|
|
|
|
width: calc(1127px + 5rem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************
|
|
|
|
Types
|
|
|
|
*******************************/
|
|
|
|
|
|
|
|
|
|
|
|
/* Text Container */
|
|
|
|
.ui.text.container {
|
|
|
|
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
|
|
|
max-width: 700px;
|
|
|
|
line-height: 1.5;
|
|
|
|
font-size: 1.14285714rem;
|
|
|
|
}
|
|
|
|
|
2022-04-07 07:06:43 +00:00
|
|
|
/* Wide Container */
|
|
|
|
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
|
|
|
|
.ui.ui.ui.wide.container {
|
|
|
|
width: 867.6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
|
|
|
|
.ui.ui.ui.wide.container {
|
|
|
|
width: 1119.6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 1200px) {
|
|
|
|
.ui.ui.ui.wide.container {
|
|
|
|
width: 1352.4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-13 13:00:31 +00:00
|
|
|
/* 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;
|
2022-04-07 07:06:43 +00:00
|
|
|
-webkit-hyphens: auto;
|
|
|
|
-ms-hyphens: auto;
|
|
|
|
hyphens: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------
|
|
|
|
Scrolling
|
|
|
|
---------------*/
|
|
|
|
|
|
|
|
.ui.scrolling.container {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
@media only screen and (max-width: 767.98px) {
|
|
|
|
.ui.scrolling.container.short {
|
|
|
|
max-height: 11.25em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container[class*="very short"] {
|
|
|
|
max-height: 7.5em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container {
|
|
|
|
max-height: 15em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container.long {
|
|
|
|
max-height: 30em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container[class*="very long"] {
|
|
|
|
max-height: 45em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 768px) {
|
|
|
|
.ui.scrolling.container.short {
|
|
|
|
max-height: 13.5em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container[class*="very short"] {
|
|
|
|
max-height: 9em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container {
|
|
|
|
max-height: 18em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container.long {
|
|
|
|
max-height: 36em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container[class*="very long"] {
|
|
|
|
max-height: 54em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 992px) {
|
|
|
|
.ui.scrolling.container.short {
|
|
|
|
max-height: 18em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container[class*="very short"] {
|
|
|
|
max-height: 12em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container {
|
|
|
|
max-height: 24em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container.long {
|
|
|
|
max-height: 48em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container[class*="very long"] {
|
|
|
|
max-height: 72em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 1920px) {
|
|
|
|
.ui.scrolling.container.short {
|
|
|
|
max-height: 22.5em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container[class*="very short"] {
|
|
|
|
max-height: 15em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container {
|
|
|
|
max-height: 30em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container.long {
|
|
|
|
max-height: 60em;
|
|
|
|
}
|
|
|
|
.ui.scrolling.container[class*="very long"] {
|
|
|
|
max-height: 90em;
|
|
|
|
}
|
2022-01-13 13:00:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************
|
|
|
|
Theme Overrides
|
|
|
|
*******************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************
|
|
|
|
Site Overrides
|
|
|
|
*******************************/
|
|
|
|
|