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
/** | |
* 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
/** | |
* 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
/** | |
* 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
/** | |
* Image always centered vertically and horizontally | |
*/ | |
div#main { | |
border: 2px solid #aaa; | |
display: table; | |
width: 100%; | |
height: 300px; | |
} |
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 always centered vertically and horizontally | |
*/ | |
div#main { | |
border: 2px solid #aaa; | |
display: table; | |
width: 100%; | |
height: 300px; | |
} |
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
/** | |
* Scalable photo scroll | |
*/ | |
section { | |
border: 1px solid #aaa; | |
width: 600px; | |
max-width: 100%; | |
} |
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
/** | |
* Fast CSS tooltips without any JavaScript and with semantic dfn element use ;) | |
*/ | |
a.tooltip { | |
position: relative; | |
} | |
a.tooltip dfn { | |
position: absolute; |
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 :hover effect | |
*/ | |
figure { | |
background: #eee; | |
border: 3px solid #aaa; | |
display: block; | |
float:left; | |
overflow: hidden; |
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 :hover effect | |
*/ | |
figure { | |
background: #eee; | |
border: 3px solid #aaa; | |
display: block; | |
float:left; | |
overflow: hidden; |