Created
November 19, 2015 08:57
-
-
Save coopermaruyama/60816c9ccbc2399ab3af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*============================================================================= | |
= Scales | |
=============================================================================*/ | |
.text-xxs { | |
font-size: 0.8rem; | |
} | |
.text-xs { | |
font-size: 1rem; | |
} | |
.text-sm { | |
font-size: 1.2rem; | |
} | |
.text-md { | |
font-size: 1.5rem; | |
} | |
.text-lg { | |
font-size: 1.8rem; | |
} | |
.text-xlg { | |
font-size: 2.5rem; | |
} | |
.text-xxlg { | |
font-size: 3rem; | |
} | |
.text-weight-light { | |
font-weight: 300; | |
} | |
.text-weight-normal { | |
font-weight: 400; | |
} | |
.text-weight-semibold { | |
font-weight: 600; | |
} | |
.text-weight-bold { | |
font-weight: 700; | |
} | |
.b-thin { | |
border-width: 3px; | |
} | |
.br-thin { | |
border-right: 3px solid; | |
} | |
.bt-thin { | |
border-top: 3px solid; | |
} | |
.bl-thin { | |
border-left: 3px solid; | |
} | |
.bb-thin { | |
border-bottom: 3px solid; | |
} | |
.b-normal { | |
border-width: 5px; | |
} | |
.br-normal { | |
border-right: 5px solid; | |
} | |
.bt-normal { | |
border-top: 5px solid; | |
} | |
.bl-normal { | |
border-left: 5px solid; | |
} | |
.bb-normal { | |
border-bottom: 5px solid; | |
} | |
.b-thick { | |
border-width: 7px; | |
} | |
.br-thick { | |
border-right: 7px solid; | |
} | |
.bt-thick { | |
border-top: 7px solid; | |
} | |
.bl-thick { | |
border-left: 7px solid; | |
} | |
.bb-thick { | |
border-bottom: 7px solid; | |
} | |
.shadow-thin { | |
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1); | |
} | |
.shadow-normal { | |
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); | |
} | |
.shadow-thick { | |
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1); | |
} | |
.m-none { | |
margin: 0 !important; | |
} | |
.mt-none { | |
margin-top: 0 !important; | |
} | |
.mb-none { | |
margin-bottom: 0 !important; | |
} | |
.ml-none { | |
margin-left: 0 !important; | |
} | |
.mr-none { | |
margin-right: 0 !important; | |
} | |
.p-none { | |
padding: 0 !important; | |
} | |
.pt-none { | |
padding-top: 0 !important; | |
} | |
.pb-none { | |
padding-bottom: 0 !important; | |
} | |
.pl-none { | |
padding-left: 0 !important; | |
} | |
.pr-none { | |
padding-right: 0 !important; | |
} | |
.m-xxs { | |
margin: 3px !important; | |
} | |
.mt-xxs { | |
margin-top: 3px !important; | |
} | |
.mb-xxs { | |
margin-bottom: 3px !important; | |
} | |
.ml-xxs { | |
margin-left: 3px !important; | |
} | |
.mr-xxs { | |
margin-right: 3px !important; | |
} | |
.p-xxs { | |
padding: 3px !important; | |
} | |
.pt-xxs { | |
padding-top: 3px !important; | |
} | |
.pb-xxs { | |
padding-bottom: 3px !important; | |
} | |
.pl-xxs { | |
padding-left: 3px !important; | |
} | |
.pr-xxs { | |
padding-right: 3px !important; | |
} | |
.m-xs { | |
margin: 5px !important; | |
} | |
.mt-xs { | |
margin-top: 5px !important; | |
} | |
.mb-xs { | |
margin-bottom: 5px !important; | |
} | |
.ml-xs { | |
margin-left: 5px !important; | |
} | |
.mr-xs { | |
margin-right: 5px !important; | |
} | |
.p-xs { | |
padding: 5px !important; | |
} | |
.pt-xs { | |
padding-top: 5px !important; | |
} | |
.pb-xs { | |
padding-bottom: 5px !important; | |
} | |
.pl-xs { | |
padding-left: 5px !important; | |
} | |
.pr-xs { | |
padding-right: 5px !important; | |
} | |
.m-sm { | |
margin: 10px !important; | |
} | |
.mt-sm { | |
margin-top: 10px !important; | |
} | |
.mb-sm { | |
margin-bottom: 10px !important; | |
} | |
.ml-sm { | |
margin-left: 10px !important; | |
} | |
.mr-sm { | |
margin-right: 10px !important; | |
} | |
.p-sm { | |
padding: 10px !important; | |
} | |
.pt-sm { | |
padding-top: 10px !important; | |
} | |
.pb-sm { | |
padding-bottom: 10px !important; | |
} | |
.pl-sm { | |
padding-left: 10px !important; | |
} | |
.pr-sm { | |
padding-right: 10px !important; | |
} | |
.m-md { | |
margin: 13px !important; | |
} | |
.mt-md { | |
margin-top: 13px !important; | |
} | |
.mb-md { | |
margin-bottom: 13px !important; | |
} | |
.ml-md { | |
margin-left: 13px !important; | |
} | |
.mr-md { | |
margin-right: 13px !important; | |
} | |
.p-md { | |
padding: 13px !important; | |
} | |
.pt-md { | |
padding-top: 13px !important; | |
} | |
.pb-md { | |
padding-bottom: 13px !important; | |
} | |
.pl-md { | |
padding-left: 13px !important; | |
} | |
.pr-md { | |
padding-right: 13px !important; | |
} | |
.m-lg { | |
margin: 15px !important; | |
} | |
.mt-lg { | |
margin-top: 15px !important; | |
} | |
.mb-lg { | |
margin-bottom: 15px !important; | |
} | |
.ml-lg { | |
margin-left: 15px !important; | |
} | |
.mr-lg { | |
margin-right: 15px !important; | |
} | |
.p-lg { | |
padding: 15px !important; | |
} | |
.pt-lg { | |
padding-top: 15px !important; | |
} | |
.pb-lg { | |
padding-bottom: 15px !important; | |
} | |
.pl-lg { | |
padding-left: 15px !important; | |
} | |
.pr-lg { | |
padding-right: 15px !important; | |
} | |
.m-xl { | |
margin: 20px !important; | |
} | |
.mt-xl { | |
margin-top: 20px !important; | |
} | |
.mb-xl { | |
margin-bottom: 20px !important; | |
} | |
.ml-xl { | |
margin-left: 20px !important; | |
} | |
.mr-xl { | |
margin-right: 20px !important; | |
} | |
.p-xl { | |
padding: 20px !important; | |
} | |
.pt-xl { | |
padding-top: 20px !important; | |
} | |
.pb-xl { | |
padding-bottom: 20px !important; | |
} | |
.pl-xl { | |
padding-left: 20px !important; | |
} | |
.pr-xl { | |
padding-right: 20px !important; | |
} | |
.m-xlg { | |
margin: 25px !important; | |
} | |
.mt-xlg { | |
margin-top: 25px !important; | |
} | |
.mb-xlg { | |
margin-bottom: 25px !important; | |
} | |
.ml-xlg { | |
margin-left: 25px !important; | |
} | |
.mr-xlg { | |
margin-right: 25px !important; | |
} | |
.p-xlg { | |
padding: 25px !important; | |
} | |
.pt-xlg { | |
padding-top: 25px !important; | |
} | |
.pb-xlg { | |
padding-bottom: 25px !important; | |
} | |
.pl-xlg { | |
padding-left: 25px !important; | |
} | |
.pr-xlg { | |
padding-right: 25px !important; | |
} | |
.m-xxlg { | |
margin: 30px !important; | |
} | |
.mt-xxlg { | |
margin-top: 30px !important; | |
} | |
.mb-xxlg { | |
margin-bottom: 30px !important; | |
} | |
.ml-xxlg { | |
margin-left: 30px !important; | |
} | |
.mr-xxlg { | |
margin-right: 30px !important; | |
} | |
.p-xxlg { | |
padding: 30px !important; | |
} | |
.pt-xxlg { | |
padding-top: 30px !important; | |
} | |
.pb-xxlg { | |
padding-bottom: 30px !important; | |
} | |
.pl-xxlg { | |
padding-left: 30px !important; | |
} | |
.pr-xxlg { | |
padding-right: 30px !important; | |
} | |
.m-auto { | |
margin: 0 auto !important; | |
} | |
/*============================================================================= | |
= Layout | |
=============================================================================*/ | |
.rounded { | |
border-radius: 5px; | |
} | |
.borderless { | |
border: none !important; | |
} | |
.ib { | |
display: inline-block; | |
vertical-align: top; | |
} | |
.va-middle { | |
vertical-align: middle; | |
} | |
.ws-nowrap { | |
white-space: nowrap; | |
} | |
.ws-normal { | |
white-space: normal; | |
} | |
/*============================================================================= | |
= Color | |
=============================================================================*/ | |
.color-black { | |
color: black; | |
} | |
.color-black.color-lighten { | |
color: #1a1a1a; | |
} | |
.color-black.color-darken { | |
color: black; | |
} | |
.bg-black { | |
background-color: black; | |
} | |
.bg-black.bg-lighten { | |
background-color: #1a1a1a; | |
} | |
.bg-black.bg-darken { | |
background-color: black; | |
} | |
.color-white { | |
color: white; | |
} | |
.color-white.color-lighten { | |
color: white; | |
} | |
.color-white.color-darken { | |
color: #e6e6e6; | |
} | |
.bg-white { | |
background-color: white; | |
} | |
.bg-white.bg-lighten { | |
background-color: white; | |
} | |
.bg-white.bg-darken { | |
background-color: #e6e6e6; | |
} | |
.color-highlight-blue { | |
color: #5198f0; | |
} | |
.color-highlight-blue.color-lighten { | |
color: #80b4f4; | |
} | |
.color-highlight-blue.color-darken { | |
color: #227cec; | |
} | |
.bg-highlight-blue { | |
background-color: #5198f0; | |
} | |
.bg-highlight-blue.bg-lighten { | |
background-color: #80b4f4; | |
} | |
.bg-highlight-blue.bg-darken { | |
background-color: #227cec; | |
} | |
.color-light-green { | |
color: #a4ca7b; | |
} | |
.color-light-green.color-lighten { | |
color: #bdd99f; | |
} | |
.color-light-green.color-darken { | |
color: #8bbb57; | |
} | |
.bg-light-green { | |
background-color: #a4ca7b; | |
} | |
.bg-light-green.bg-lighten { | |
background-color: #bdd99f; | |
} | |
.bg-light-green.bg-darken { | |
background-color: #8bbb57; | |
} | |
.color-dark-green { | |
color: #7cb342; | |
} | |
.color-dark-green.color-lighten { | |
color: #95c563; | |
} | |
.color-dark-green.color-darken { | |
color: #628e34; | |
} | |
.bg-dark-green { | |
background-color: #7cb342; | |
} | |
.bg-dark-green.bg-lighten { | |
background-color: #95c563; | |
} | |
.bg-dark-green.bg-darken { | |
background-color: #628e34; | |
} | |
.color-error-red { | |
color: #f35528; | |
} | |
.color-error-red.color-lighten { | |
color: #f67b58; | |
} | |
.color-error-red.color-darken { | |
color: #dc3a0c; | |
} | |
.bg-error-red { | |
background-color: #f35528; | |
} | |
.bg-error-red.bg-lighten { | |
background-color: #f67b58; | |
} | |
.bg-error-red.bg-darken { | |
background-color: #dc3a0c; | |
} | |
.color-light-gray { | |
color: #f5f5f5; | |
} | |
.color-light-gray.color-lighten { | |
color: white; | |
} | |
.color-light-gray.color-darken { | |
color: #dcdcdc; | |
} | |
.bg-light-gray { | |
background-color: #f5f5f5; | |
} | |
.bg-light-gray.bg-lighten { | |
background-color: white; | |
} | |
.bg-light-gray.bg-darken { | |
background-color: #dcdcdc; | |
} | |
.color-gray { | |
color: #666666; | |
} | |
.color-gray.color-lighten { | |
color: gray; | |
} | |
.color-gray.color-darken { | |
color: #4d4d4d; | |
} | |
.bg-gray { | |
background-color: #666666; | |
} | |
.bg-gray.bg-lighten { | |
background-color: gray; | |
} | |
.bg-gray.bg-darken { | |
background-color: #4d4d4d; | |
} | |
.color-light-green { | |
color: #7cb342; | |
} | |
.color-light-green.color-lighten { | |
color: #95c563; | |
} | |
.color-light-green.color-darken { | |
color: #628e34; | |
} | |
.bg-light-green { | |
background-color: #7cb342; | |
} | |
.bg-light-green.bg-lighten { | |
background-color: #95c563; | |
} | |
.bg-light-green.bg-darken { | |
background-color: #628e34; | |
} | |
.color-green { | |
color: #00a950; | |
} | |
.color-green.color-lighten { | |
color: #00dc68; | |
} | |
.color-green.color-darken { | |
color: #007638; | |
} | |
.bg-green { | |
background-color: #00a950; | |
} | |
.bg-green.bg-lighten { | |
background-color: #00dc68; | |
} | |
.bg-green.bg-darken { | |
background-color: #007638; | |
} | |
.color-dark-green { | |
color: #43a048; | |
} | |
.color-dark-green.color-lighten { | |
color: #5bbb61; | |
} | |
.color-dark-green.color-darken { | |
color: #347c38; | |
} | |
.bg-dark-green { | |
background-color: #43a048; | |
} | |
.bg-dark-green.bg-lighten { | |
background-color: #5bbb61; | |
} | |
.bg-dark-green.bg-darken { | |
background-color: #347c38; | |
} | |
.color-dark-blue { | |
color: #3948ab; | |
} | |
.color-dark-blue.color-lighten { | |
color: #5261c5; | |
} | |
.color-dark-blue.color-darken { | |
color: #2c3885; | |
} | |
.bg-dark-blue { | |
background-color: #3948ab; | |
} | |
.bg-dark-blue.bg-lighten { | |
background-color: #5261c5; | |
} | |
.bg-dark-blue.bg-darken { | |
background-color: #2c3885; | |
} | |
.color-blue { | |
color: #295da7; | |
} | |
.color-blue.color-lighten { | |
color: #3574ce; | |
} | |
.color-blue.color-darken { | |
color: #1f467e; | |
} | |
.bg-blue { | |
background-color: #295da7; | |
} | |
.bg-blue.bg-lighten { | |
background-color: #3574ce; | |
} | |
.bg-blue.bg-darken { | |
background-color: #1f467e; | |
} | |
.color-dark-yellow { | |
color: #ccdc39; | |
} | |
.color-dark-yellow.color-lighten { | |
color: #d7e464; | |
} | |
.color-dark-yellow.color-darken { | |
color: #b1c022; | |
} | |
.bg-dark-yellow { | |
background-color: #ccdc39; | |
} | |
.bg-dark-yellow.bg-lighten { | |
background-color: #d7e464; | |
} | |
.bg-dark-yellow.bg-darken { | |
background-color: #b1c022; | |
} | |
.color-purple { | |
color: #8d24aa; | |
} | |
.color-purple.color-lighten { | |
color: #af2ed3; | |
} | |
.color-purple.color-darken { | |
color: #6a1b80; | |
} | |
.bg-purple { | |
background-color: #8d24aa; | |
} | |
.bg-purple.bg-lighten { | |
background-color: #af2ed3; | |
} | |
.bg-purple.bg-darken { | |
background-color: #6a1b80; | |
} | |
.color-orange { | |
color: #f4501e; | |
} | |
.color-orange.color-lighten { | |
color: #f6764f; | |
} | |
.color-orange.color-darken { | |
color: #d53a0a; | |
} | |
.bg-orange { | |
background-color: #f4501e; | |
} | |
.bg-orange.bg-lighten { | |
background-color: #f6764f; | |
} | |
.bg-orange.bg-darken { | |
background-color: #d53a0a; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment