/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/
/* Table of contents
??????????????????????????????????????????????????
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/
/* Grid
?????????????????????????????????????????????????? */
.container
{
position: relative;
width: 100%;
margin: 0 auto;
//max-width:1200px;
box-sizing: border-box;
}
.row
{
display: inline-block;;
width:100%;
margin:0;
padding: 0;
box-sizing: border-box;
}
.column,.columns
{
float:left;
width: 100%;
box-sizing: border-box;
}
body.rtl .column,body.rtl .columns
{
float:right;
}
/* For devices larger than 400px */
@media (min-width: 400px)
{
.container {
//width: 85%;
padding: 0; }
}
/* For devices larger than 600px */
@media (min-width: 600px) {
.container
{
// width: 80%;
}
.column, .columns
{
//margin-left: 0%;
}
.column:first-child,.columns:first-child
{
margin-left: 0;
}
.one.column,
.col1,.one.columns { width: 8.333333%; }
.col2,.two.columns { width: 16.66666%; }
.col3,.three.columns { width: 25%; }
.col4,.four.columns { width: 33.33333%; }
.col5,.five.columns { width: 41.66666%; }
.col6,.six.columns { width: 50%; }
.col7,.seven.columns { width: 58.33333%; }
.col8,.eight.columns { width: 66.66666%; }
.col9,.nine.columns { width: 75%; }
.col10,.ten.columns { width: 83.33333%; }
.col11,.eleven.columns { width: 91.66666%; }
.co12,.twelve.columns { width: 100%;}
.one-third.column { width: 33.33333%; }
.two-thirds.column { width: 66.66666%; }
.one-half.column { width: 50%; }
body.rtl .half-col-margin
{
margin-right:4.161616%;
}
body.ltr .half-col-margin
{
margin-left:4.161616%;
}
body.rtl .row.half-col-margin-children > div:not(.no-display):not(:nth-child(3n + 1))
{
margin-right:4.161616%;
}
body.ltr .row.half-col-margin-children > div:not(.no-display):not(:nth-child(3n + 1))
{
margin-left:4.161616%;
}
}
.width-400
{
margin:0 auto;
width:100%;
max-width: 400px;
}
.width-400.no-center
{
margin:0;
}
.mrg-btn-20
{
margin-bottom: 20px;
}
.mrg-btn-40
{
margin-bottom: 40px;
}
.full-width
{
width: 100%;
box-sizing: border-box;
}
.max-full-width
{
max-width: 100%;
box-sizing: border-box;
}
/* Base Styles
?????????????????????????????????????????????????? */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
font-size: 100%;
}
body
{
font-size: 1em; /* currently ems cause chrome bug misinterpreting rems on body element */
line-height: 1.5;
font-weight: 400;
font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* Typography
?????????????????????????????????????????????????? */
h1, h2, h3, h4, h5, h6
{
margin-top: 0;
margin-bottom: 1.5em;
font-weight: 300;
}
h1 { font-size: 1.9em; line-height: 1.2; }
h2 { font-size: 1.5em; line-height: 1.25; }
h3 { font-size: 1.4em; line-height: 1.3; }
h4 { font-size: 1.3em; line-height: 1.35; }
h5 { font-size: 1.2em; line-height: 1.5; }
h6 { font-size: 1.1em; line-height: 1.6; }
/* Larger than phablet */
@media (min-width: 600px) {
h1 { font-size: 2.7em; }
h2 { font-size: 2.2em; }
h3 { font-size: 2.0em; }
h4 { font-size: 1.8em; }
h5 { font-size: 1.7em; }
h6 { font-size: 1.6em; }
}
p {
margin-top: 0;
}
/* Links
?????????????????????????????????????????????????? */
a
{
color: #0C7B77;
}
a:hover
{
color: #C63672;
}
label,
legend
{
display: block;
margin-bottom: 5px;
font-weight: 600;
}
/* Buttons
?????????????????????????????????????????????????? */
textarea,select, input:not([type=radio])
{
font-size: 20px;
min-height:42px;
box-sizing:border-box;
}
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
display: inline-block;
color: #555;
text-align: center;
font-size: 28px;
height:auto;
font-weight: 600;
background-color: transparent;
border-radius: 4px;
border: 1px solid #bbb;
cursor: pointer;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
//color: #333;
//border-color: #888;
outline: 0;
transition: background-color .3s,color .3s;
}
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
height: auto;
color: #FFF;
background-color: #0C7B77;
border-color: #024240;
transition: background-color .3s,color .3s;
}
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover
/*,.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus */{
color: #FFF;
background-color: #C63672;
border-color: #8D1648;
transition: background-color .3s,color .3s;
}
.button.button-delete
{
color: #FFF;
background-color: #555;
border-color: #000;
transition: background-color .3s,color .3s;
}
.button.button-delete:focus,
.button.button-delete:hover
{
color: #FFF;
background-color: #872E36;
border-color: #790914;
transition: background-color .3s,color .3s;
}
.button.button-type2
, button.button-type2
, input[type="submit"].button-type2
, input[type="reset"].button-type2
, input[type="button"].button-type2
{
background-color: #73012F;
border-color:#73012F;
color:white;
transition:background-color .3s;
border-radius: 4px;
}
.button.button-type2:hover
, button.button-type2:hover
, input[type="submit"].button-type2:hover
, input[type="reset"].button-type2:hover
, input[type="button"].button-type2:hover
{
color:white;
background-color: #A40344;
border-color:#73012F;
transition:background-color .3s;
}
.button.button-type1
, button.button-type1
, input[type="submit"].button-type1
, input[type="reset"].button-type1
, input[type="button"].button-type1
{
background-color: #137013;
border-color: #137013;
color:white;
transition:background-color .3s;
border-radius: 4px;
}
.button.button-type1:hover
, button.button-type1:hover
, input[type="submit"].button-type1:hover
, input[type="reset"].button-type1:hover
, input[type="button"].button-type1:hover
{
color:white;
border-color: #137013;
background-color: #1DA01D;
transition:background-color .3s;
}
/* Clearing
?????????????????????????????????????????????????? */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf
{
content: "";
display: table;
clear: both;
}
/* Media Queries
?????????????????????????????????????????????????? */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
/* Larger than mobile */
@media (min-width: 400px)
{
}
/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 600px)
{
}
/* Larger than tablet */
@media (min-width: 750px)
{
}
/* Larger than desktop */
@media (min-width: 1000px)
{
}
/* Larger than Desktop HD */
@media (min-width: 1200px)
{
}
|