This file contains 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
#bg { | |
position: fixed; | |
left: 0px; | |
top: 0px; | |
min-width: 100%; | |
min-height: 100%; | |
} |
This file contains 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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
#bg { | |
position:fixed; | |
top:-50%; | |
left:-50%; | |
width:200%; | |
height:200%; |
This file contains 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
/** | |
* Tab box using :target | |
*/ | |
ul { | |
font: normal normal normal 14px/16px Arial; | |
list-style-type: none; | |
margin: 200px 0; | |
padding: 0; | |
} |
This file contains 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
/** | |
* Tab box using :target | |
*/ | |
ul { | |
font: normal normal normal 14px/16px Arial; | |
list-style-type: none; | |
margin: 200px 0; | |
padding: 0; | |
} |
This file contains 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
/** | |
* Tab box using :target | |
*/ | |
.container { | |
position: relative; | |
margin-top: 300px; | |
} | |
ul { | |
font: normal normal normal 14px/16px Arial; |
This file contains 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
/** | |
* Tab box using :target | |
*/ | |
.container { | |
position: relative; | |
top: 300px; | |
} | |
ul { | |
font: normal normal normal 14px/16px Arial; |
This file contains 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
/** | |
* Tab box using :target | |
*/ | |
.container { | |
position: relative; | |
top: 300px; | |
} | |
ul { | |
font: normal normal normal 14px/16px Arial; |
This file contains 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
/* IE8 CSS only Accordion */ | |
a.accord ~ div.container { | |
height: 0px; | |
overflow: hidden; | |
-webkit-transition: all 0.3s ease; | |
-moz-transition: all 0.3s ease; | |
-ms-transition: all 0.3s ease; | |
-o-transition: all 0.3s ease; | |
} |
This file contains 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
/** | |
* Flexbox Overlay | |
*/ | |
body { | |
margin: 0; | |
} | |
#overlay { | |
position: fixed; |
This file contains 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 Shadows */ | |
body { | |
background: grey; | |
padding: 100px; | |
} | |
div { | |
background: white; | |
height: 300px; | |
position: relative; | |
width: 400px; |
OlderNewer