You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
267 lines
4.3 KiB
267 lines
4.3 KiB
/*
|
|
* # Semantic - Container
|
|
* http://github.com/semantic-org/semantic-ui/
|
|
*
|
|
*
|
|
* Copyright 2013 Contributors
|
|
* Released under the MIT license
|
|
* http://opensource.org/licenses/MIT
|
|
*
|
|
*/
|
|
|
|
/*******************************
|
|
Theme
|
|
*******************************/
|
|
|
|
/*-------------------
|
|
Theme
|
|
--------------------*/
|
|
|
|
/* To override a theme for an individual element
|
|
specify theme name below
|
|
*/
|
|
|
|
/* Theme to load site variables */
|
|
|
|
/* Path to user override folder */
|
|
|
|
/* Elements */
|
|
|
|
/* Collections */
|
|
|
|
/* Modules */
|
|
|
|
/* Views */
|
|
|
|
/* Import */
|
|
|
|
/*******************************
|
|
Global Variables
|
|
*******************************/
|
|
|
|
/*-------------------
|
|
Paths
|
|
--------------------*/
|
|
|
|
/*-------------------
|
|
Page
|
|
--------------------*/
|
|
|
|
/*-------------------
|
|
Breakpoints
|
|
--------------------*/
|
|
|
|
/*-------------------
|
|
Fonts
|
|
--------------------*/
|
|
|
|
/*-------------------
|
|
Icons
|
|
--------------------*/
|
|
|
|
/* Width of largest icon */
|
|
|
|
/*******************************
|
|
BG Colors
|
|
*******************************/
|
|
|
|
/*******************************
|
|
Colors
|
|
*******************************/
|
|
|
|
/*-------------------
|
|
Background
|
|
--------------------*/
|
|
|
|
/*--- Colors ---*/
|
|
|
|
/*--- Emotive ---*/
|
|
|
|
/*--- Neutrals ---*/
|
|
|
|
/*-------------------
|
|
Text Colors
|
|
--------------------*/
|
|
|
|
/*-------------------
|
|
Brand Colors
|
|
--------------------*/
|
|
|
|
/*-------------------
|
|
Borders
|
|
--------------------*/
|
|
|
|
/*-------------------
|
|
Sizes
|
|
--------------------*/
|
|
|
|
/*-------------------
|
|
Transitions
|
|
--------------------*/
|
|
|
|
/*******************************
|
|
States
|
|
*******************************/
|
|
|
|
/*-------------------
|
|
Disabled
|
|
--------------------*/
|
|
|
|
/*-------------------
|
|
Hover
|
|
--------------------*/
|
|
|
|
/*--- Colors ---*/
|
|
|
|
/*--- Emotive ---*/
|
|
|
|
/*--- Neutrals ---*/
|
|
|
|
/*-------------------
|
|
Down (:active)
|
|
--------------------*/
|
|
|
|
/*--- Colors ---*/
|
|
|
|
/*--- Emotive ---*/
|
|
|
|
/*--- Neutrals ---*/
|
|
|
|
/*-------------------
|
|
Active
|
|
--------------------*/
|
|
|
|
/*--- Standard ---*/
|
|
|
|
/*--- Emotive ---*/
|
|
|
|
/*--- Neutrals ---*/
|
|
|
|
/*-------------------
|
|
Container
|
|
--------------------*/
|
|
|
|
/*******************************
|
|
User Global Variables
|
|
*******************************/
|
|
|
|
/*-------------------
|
|
Container
|
|
--------------------*/
|
|
|
|
/*******************************
|
|
User Global Variables
|
|
*******************************/
|
|
|
|
/*-------------------
|
|
Container
|
|
--------------------*/
|
|
|
|
/*******************************
|
|
Container
|
|
*******************************/
|
|
|
|
.ui.container {
|
|
display: block;
|
|
margin: 0em auto;
|
|
}
|
|
|
|
/* Coupling */
|
|
|
|
.ui.container > .grid {
|
|
margin-left: 0% !important;
|
|
margin-right: 0% !important;
|
|
}
|
|
|
|
/*******************************
|
|
Types
|
|
*******************************/
|
|
|
|
/*-------------------
|
|
Centered
|
|
--------------------*/
|
|
|
|
.ui.centered.container {
|
|
margin: 0em auto;
|
|
}
|
|
|
|
/*-------------------
|
|
Page
|
|
--------------------*/
|
|
|
|
.ui.page.container:not(.centered) {
|
|
margin-left: 0em;
|
|
margin-right: 0em;
|
|
}
|
|
|
|
@media only screen and (max-width: 991px) {
|
|
.ui.page.container:not(.centered) {
|
|
padding-left: 4%;
|
|
padding-right: 4%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 992px) {
|
|
.ui.page.container:not(.centered) {
|
|
padding-left: 8%;
|
|
padding-right: 8%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 1500px) {
|
|
.ui.page.container:not(.centered) {
|
|
padding-left: 13%;
|
|
padding-right: 13%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 1750px) {
|
|
.ui.page.container:not(.centered) {
|
|
padding-left: 18%;
|
|
padding-right: 18%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 2000px) {
|
|
.ui.page.container:not(.centered) {
|
|
padding-left: 23%;
|
|
padding-right: 23%;
|
|
}
|
|
}
|
|
|
|
/* Centered Page Container */
|
|
|
|
@media only screen and (max-width: 991px) {
|
|
.ui.centered.page.container {
|
|
margin-left: 4%;
|
|
margin-right: 4%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 992px) {
|
|
.ui.centered.page.container {
|
|
margin-left: 8%;
|
|
margin-right: 8%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 1500px) {
|
|
.ui.centered.page.container {
|
|
margin-left: 13%;
|
|
margin-right: 13%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 1750px) {
|
|
.ui.centered.page.container {
|
|
margin-left: 18%;
|
|
margin-right: 18%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 2000px) {
|
|
.ui.centered.page.container {
|
|
margin-left: 23%;
|
|
margin-right: 23%;
|
|
}
|
|
}
|