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
Gradients | |
/* Light Gradient */ | |
.gradient-light-linear { | |
background-image: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0)); | |
} | |
/* Dark Gradient */ | |
.gradient-dark-linear { | |
background-image: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,0)); |
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
Rounded Borders | |
.light-rounded { | |
border-radius: 3px; | |
} | |
.heavy-rounded { | |
border-radius: 8px; | |
} |
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
Background Inline Link |
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
//Underlined Inline Link | |
//This is some dummy text to show an inline link. | |
//Link will have dashes that transform into dotted over hover. | |
.inline-link-2 { | |
display: inline-block; | |
border-bottom: 1px dashed rgba(0,0,0,0.4); |
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
//Triangle Inline Link | |
//This is some dummy text to show an inline link. | |
//Link will have a triangle next to it that changes upon hover | |
.inline-link-3 { | |
display: inline-block; | |
position: relative; |
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
//Metro Styles | |
//Boxes will have a 3d effet that looks like windows metro. There is a 3d version and plain button. | |
.metro { | |
display: inline-block; | |
padding: 10px; | |
margin: 10px; | |
background: #08C; |
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
//Bordered Link | |
//Link surround by a border box. nothing in the inside just the border. | |
.bordered-link { | |
display: inline-block; | |
padding: 8px; | |
border: 3px solid #FCB326; |
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
Button Styles | |
//Modern-shadow around it | |
.modern { | |
display: inline-block; | |
margin: 10px; | |
padding: 8px 15px; |
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
//Simple Input with border that fades when active. | |
.simple-input { | |
display: block; | |
padding: 5px; | |
border: 4px solid #F1B720; | |
border-radius: 5px; | |
color: #333; | |
transition: all 0.3s ease-out; | |
} |
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
//Mac Input | |
.mac { | |
display: block; | |
border: none; | |
border-radius: 20px; | |
padding: 5px 8px; | |
color: #333; | |
box-shadow: | |
inset 0 2px 0 rgba(0,0,0,.2), |