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 double border styling without any additional containers. | |
*/ | |
.btn { | |
display: inline-block; | |
background: #aaa; | |
background-clip: content-box; | |
border: 2px solid #aaa; | |
border-radius: 3px; |
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
/** | |
* CSS Timeline | |
*/ | |
body { | |
font-family: Arial, sans-serif; | |
} | |
.timeline { | |
border: 1px solid #eee; |
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
/** | |
* Hex image | |
*/ | |
body { | |
background: url('http://subtlepatterns.com/patterns/gridme.png'); | |
} | |
.hex { | |
height: 448px; |
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
/** | |
* Photo Stack with :hover animation | |
*/ | |
figure.img { | |
border: 1px solid #eee; | |
background: #fff; | |
padding: 10px; | |
float: left; | |
margin: 20px; |
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
/** | |
* Image styling - hexagon method 2. | |
*/ | |
#wrap { | |
box-sizing: border-box; | |
margin: 0 auto; | |
overflow: hidden; | |
padding: 40px 0 0 118px; | |
} | |
.img { |
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
/** | |
* Image styling - octagon method 2. | |
*/ | |
#wrap { | |
box-sizing: border-box; | |
margin: 0 auto; | |
overflow: hidden; | |
padding: 40px 0 0 118px; | |
} | |
.img { |
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
/** | |
* Image styling - octagon method 1. | |
*/ | |
.row { | |
display: block; | |
clear: both; | |
} | |
.img { | |
border: none; | |
float:left; |
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
/** | |
* Sexy CSS buttons | |
*/ | |
/* additional styles */ | |
hr { | |
border: none; | |
border-bottom: 2px solid #fafafa; | |
border-top: 1px solid #dadada; |
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
/** | |
* Text-shadow unfortunately doesn't work so good as the multi-layers layout | |
*/ | |
body { | |
background: #11A9E2; | |
perspective: 600px; | |
} | |
#wrap { |
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
/** | |
* 3D text | |
*/ | |
body { | |
perspective: 600px; | |
width: 100%; | |
} | |
#wrap { |