Created
September 6, 2012 17:13
-
-
Save jdsteinbach/3658660 to your computer and use it in GitHub Desktop.
border-top + box-shadow for content divider with depth illusion
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
/* | |
border-top + box-shadow for content divider with depth illusion | |
*/ | |
* { | |
font-family: "Myriad Pro",Helvetica,sans-serif; | |
} | |
body { | |
background: #aaa; | |
} | |
#container { | |
width: 600px; | |
margin: 0 auto; | |
background: #ddd; | |
padding: 1em 2em; | |
-moz-box-shadow: 0 0 14px 0 #333; | |
-webkit-box-shadow: 0 0 14px 0 #333; | |
box-shadow: 0 0 14px 0 #333; | |
} | |
h3 { | |
margin-top: 1.6em; | |
padding-top: 1.6em; | |
width: 100%; | |
border-top: 1px solid #fff; | |
-moz-box-shadow: 0 -2px 0 -1px #bbb; | |
-webkit-box-shadow: 0 -2px 0 -1px #bbb; | |
box-shadow: 0 -2px 0 -1px #bbb; | |
font-family: "Palatino Linotype",Palatino,Georgia,serif; | |
} |
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
<body> | |
<div id="container"> | |
<h1>Page Title</h1> | |
<h3>Content Title</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nisl augue, faucibus quis varius eu, mattis et ante. Duis quis sollicitudin nunc. Maecenas vel feugiat mauris. Nam mauris eros, laoreet sed ultricies pretium, varius nec ipsum.</p> | |
<h3>Content Title</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nisl augue, faucibus quis varius eu, mattis et ante. Duis quis sollicitudin nunc. Maecenas vel feugiat mauris. Nam mauris eros, laoreet sed ultricies pretium, varius nec ipsum.</p> | |
<h3>Content Title</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nisl augue, faucibus quis varius eu, mattis et ante. Duis quis sollicitudin nunc. Maecenas vel feugiat mauris. Nam mauris eros, laoreet sed ultricies pretium, varius nec ipsum.</p> | |
<h3>Content Title</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nisl augue, faucibus quis varius eu, mattis et ante. Duis quis sollicitudin nunc. Maecenas vel feugiat mauris. Nam mauris eros, laoreet sed ultricies pretium, varius nec ipsum.</p> | |
</div> | |
</body> |
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-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment