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
/** | |
* Scrolling shadows by @kizmarh and @leaverou | |
* Only works in browsers supporting background-attachment: local; & CSS gradients | |
* Degrades gracefully | |
*/ | |
html { | |
background: white; | |
font: 120% sans-serif; | |
} |
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
/* Scrolling shadows by @kizmarh */ | |
html { | |
background: #FFF; | |
} | |
.scrollbox { | |
position: relative; | |
z-index: 1; |
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 demo | |
*/ | |
h1 { | |
padding: 14px 0 0 14px; | |
border: solid 5px red; | |
display: inline-block; | |
font-family: Helvetica; | |
text-shadow: -14px -14px 0 #000; | |
} |
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 demo | |
*/ | |
h1 { | |
padding: 14px 0 0 14px; | |
border: solid 5px red; | |
display: inline-block; | |
font-family: Helvetica; | |
text-shadow: -14px -14px 0 #000; | |
} |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
select { | |
outline: none; | |
border: solid 2px #9ec3d6; | |
border-radius: 20px; | |
box-shadow: 0 0 5px #9ec3d6; | |
min-width: 165px; | |
padding: 7px; |
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
/** | |
* SVG noise (Warning: Might be slow!) | |
*/ | |
html { background: lightgray; } | |
body { margin: 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
/** | |
* btn_sign | |
*/ | |
.btn_sign { | |
display: inline-block; | |
width: 97px; | |
text-align: center; | |
text-decoration: none; | |
font-size: 12px; | |
line-height: 1.5; |
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
.btn_sign { | |
display: inline-block; | |
width: 97px; | |
text-align: center; | |
text-decoration: none; | |
font-size: 12px; | |
line-height: 1.5; | |
color: #fff; | |
border-radius: 3px; | |
border: 1px solid; |
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
.btn_sign { | |
min-width: 87px; | |
padding: 0 5px; | |
display: inline-block; | |
text-align: center; | |
text-decoration: none; | |
font-size: 12px; | |
line-height: 1.5; | |
color: #fff; | |
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
/** | |
* DINO | |
*/ | |
.dino { | |
width: 200px; | |
height: 200px; | |
padding: 0; | |
margin: 15%; | |
outline: solid 1px; | |
font: 900 120px/.65 "Comic Sans MS"; |
OlderNewer