Created
July 13, 2012 16:02
-
-
Save innovationhero/3105685 to your computer and use it in GitHub Desktop.
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
/* rotated http://nicolasgallagher.com/css-drop-shadows-without-images/demo/ */ | |
@import url(http://fonts.googleapis.com/css?family=Gloria+Hallelujah); | |
body { padding:20px 0 30px; font: 20px 'Gloria Hallelujah', cursive; ; | |
text-align:center; color:#333; background:white; } | |
a { font-weight:bold; color:#346AA8; } | |
a:hover, a:focus, a:active { text-decoration:none; } | |
.container { position:relative; z-index:1; width:600px; padding:20px; margin:0 auto; background:white; } | |
.container:after { content:""; display:block; clear:both; visibility:hidden; height:0; font-size:0; } | |
/* Shared styles */ | |
.drop-shadow { position:relative; float:left; width:40%; padding:1em; margin:2em 10px 4em; background:#fff; -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; } | |
.drop-shadow:before, .drop-shadow:after { content:""; position:absolute; z-index:-2; } | |
.drop-shadow p { font-size:16px; font-weight:bold; } | |
/* Lifted corners */ | |
.lifted { -moz-border-radius:4px; border-radius:4px; } | |
.lifted:before, .lifted:after { bottom:15px; left:10px; width:50%; height:20%; max-width:300px; max-height:100px; -webkit-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7); -moz-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7); box-shadow:0 15px 10px rgba(0, 0, 0, 0.7); -webkit-transform:rotate(-3deg); -moz-transform:rotate(-3deg); -ms-transform:rotate(-3deg); -o-transform:rotate(-3deg); transform:rotate(-3deg); } | |
.lifted:after { right:10px; left:auto; -webkit-transform:rotate(3deg); -moz-transform:rotate(3deg); -ms-transform:rotate(3deg); -o-transform:rotate(3deg); transform:rotate(3deg); } | |
/* Curled corners */ | |
.curled { border:1px solid #efefef; -moz-border-radius:0 0 120px 120px / 0 0 6px 6px; border-radius:0 0 120px 120px / 0 0 6px 6px; } | |
.curled:before, .curled:after { bottom:12px; left:10px; width:50%; height:55%; max-width:200px; max-height:100px; -webkit-box-shadow:0 8px 12px rgba(0, 0, 0, 0.5); -moz-box-shadow:0 8px 12px rgba(0, 0, 0, 0.5); box-shadow:0 8px 12px rgba(0, 0, 0, 0.5); -webkit-transform:skew(-8deg) rotate(-3deg); -moz-transform:skew(-8deg) rotate(-3deg); -ms-transform:skew(-8deg) rotate(-3deg); -o-transform:skew(-8deg) rotate(-3deg); transform:skew(-8deg) rotate(-3deg); } | |
.curled:after { right:10px; left:auto; -webkit-transform:skew(8deg) rotate(3deg); -moz-transform:skew(8deg) rotate(3deg); -ms-transform:skew(8deg) rotate(3deg); -o-transform:skew(8deg) rotate(3deg); transform:skew(8deg) rotate(3deg); } | |
/* Perspective */ | |
.perspective:before { left:80px; bottom:5px; width:50%; height:35%; max-width:200px; max-height:50px; -webkit-box-shadow:-80px 0 8px rgba(0, 0, 0, 0.4); -moz-box-shadow:-80px 0 8px rgba(0, 0, 0, 0.4); box-shadow:-80px 0 8px rgba(0, 0, 0, 0.4); -webkit-transform:skew(50deg); -moz-transform:skew(50deg); -ms-transform:skew(50deg); -o-transform:skew(50deg); transform:skew(50deg); -webkit-transform-origin:0 100%; -moz-transform-origin:0 100%; -ms-transform-origin:0 100%; -o-transform-origin:0 100%; transform-origin:0 100%; } | |
.perspective:after { display:none; } | |
/* Raised shadow - no pseudo-elements needed */ | |
.raised { -webkit-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; -moz-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; } | |
/* Curved shadows */ | |
.curved:before { top:10px; bottom:10px; left:0; right:50%; -webkit-box-shadow:0 0 15px rgba(0,0,0,0.6); -moz-box-shadow:0 0 15px rgba(0,0,0,0.6); box-shadow:0 0 15px rgba(0,0,0,0.6); -moz-border-radius:10px / 100px; border-radius:10px / 100px; } | |
.curved-vt-2:before { right:0; } | |
.curved-hz-1:before { top:50%; bottom:0; left:10px; right:10px; -moz-border-radius:100px / 10px; border-radius:100px / 10px; } | |
.curved-hz-2:before { top:0; bottom:0; left:10px; right:10px; -moz-border-radius:100px / 10px; border-radius:100px / 10px; } | |
/* Rotated box */ | |
.rotated { -webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none; -webkit-transform:rotate(-3deg); -moz-transform:rotate(-3deg); -ms-transform:rotate(-3deg); -o-transform:rotate(-3deg); transform:rotate(-3deg); } | |
.rotated > :first-child:before { content:""; position:absolute; z-index:-1; top:0; bottom:0; left:0; right:0; background:#fff; -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; } | |
input { | |
font:24px 'Gloria Hallelujah', cursive; | |
width: 200px; | |
-moz-border-radius: 15px; | |
border-radius: 1px; | |
border:solid 0px black; | |
outline:none; | |
padding:1px | |
-webkit-box-shadow:none; | |
-moz-box-shadow:none; | |
box-shadow:none; | |
-webkit-transform:rotate(-3deg); | |
-moz-transform:rotate(-3deg); | |
-ms-transform:rotate(-3deg); | |
-o-transform:rotate(-3deg); | |
transform:rotate(-3deg); | |
} | |
} | |
input > :first-child:before { | |
content:""; | |
position:absolute; | |
z-index:-1; | |
top:0; | |
bottom:0; | |
left:0; | |
right:0; | |
background:#fff; | |
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; | |
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; | |
box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; | |
} | |
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
<!-- content to be placed inside <body>…</body> --> | |
<div class="container"> <h1><a href="/css-drop-shadows-without-images/">CSS drop-shadows without images</a></h1> | |
<input type="text" /> | |
<div class="drop-shadow lifted"> <input type="text" /> | |
<p>Lifted corners</p> </div> | |
<div class="drop-shadow curled"> <p>Curled corners</p> </div> | |
<div class="drop-shadow perspective"> <p>Perspective</p> </div> | |
<div class="drop-shadow raised"> <p>Raised box</p> </div> | |
<div class="drop-shadow curved curved-vt-1"> <p>Single vertical curve</p> </div> | |
<div class="drop-shadow curved curved-vt-2"> <p>Vertical curves</p> </div> | |
<div class="drop-shadow curved curved-hz-1"> <p>Single horizontal curve</p> </div> | |
<div class="drop-shadow curved curved-hz-2"> <p>Horizontal curves</p> </div> | |
<div class="drop-shadow lifted rotated"> | |
<p><input type="text" /></p> | |
</div> | |
<div class="drop-shadow lifted rotated"> | |
<p><input type="password" /></p> | |
</div> | |
<div class="drop-shadow lifted rotated"> | |
<p> | |
<img src="http://twinflamesinlove.com/images/pink_heart_sm.png" /> | |
<img src="http://twinflamesinlove.com/images/pink_heart_sm.png" /> | |
<img src="http://twinflamesinlove.com/images/pink_heart_sm.png" /> | |
<img src="http://twinflamesinlove.com/images/pink_heart_sm.png" /> | |
<img src="http://twinflamesinlove.com/images/pink_heart_sm.png" /> | |
<img src="http://twinflamesinlove.com/images/pink_heart_sm.png" /> | |
<img src="http://twinflamesinlove.com/images/pink_heart_sm.png" /> | |
<img src="http://twinflamesinlove.com/images/pink_heart_sm.png" /> | |
<img src="http://twinflamesinlove.com/images/pink_heart_sm.png" /> | |
<img src="http://twinflamesinlove.com/images/pink_heart_sm.png" /> | |
<img src="http://twinflamesinlove.com/images/pink_heart_sm.png" /> | |
</p> | |
</div> | |
|
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
{"view":"split","fontsize":"150","seethrough":"","prefixfree":"1","page":"result"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment