Created
April 25, 2012 19:34
-
-
Save tyv/2492619 to your computer and use it in GitHub Desktop.
Untitled
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
.frame | |
{ | |
position: relative; | |
height: 500px; | |
background: linear-gradient(bottom, #f7f5e8, #a2cce7); | |
border-bottom: 4px solid orange | |
} | |
.frame .front | |
{ | |
position: absolute; | |
left: 55%; | |
bottom: 15px; | |
z-index: 3; | |
width: 400px; | |
height: 200px; | |
border-radius: 200px; | |
box-shadow: inset -10px -10px 880px rgb(239,148,227), 0 0 63px rgb(239,148,227), 0 0 63px rgb(239,148,227); | |
} | |
.frame .front:before, | |
.frame .front:after | |
{ | |
position: inherit; | |
width: inherit; | |
height: inherit; | |
border-radius: inherit; | |
content: ""; | |
} | |
.frame .front:before | |
{ | |
left: -150%; | |
bottom: 35%; | |
box-shadow: inset -10px -10px 880px rgb(100,148,227), 0 0 63px rgb(100,148,227), 0 0 63px rgb(100,148,227); | |
} | |
.frame .front:after | |
{ | |
left: -400%; | |
bottom: 60%; | |
box-shadow: inset -10px -10px 880px rgb(300,190,32), 0 0 3px rgba(176,145,189,0.75); | |
} | |
.frame .main | |
{ | |
position: absolute; | |
left: 75%; | |
bottom: 95px; | |
width: 200px; | |
height: 200px; | |
border-radius: 200px; | |
box-shadow: inset -10px -10px 880px rgb(239,148,227), 0 0 3px rgba(176,145,189,0.75) | |
} | |
.frame .main:before, | |
.frame .main:after | |
{ | |
position: inherit; | |
width: inherit; | |
height: inherit; | |
border-radius: inherit; | |
content: ""; | |
} | |
.frame .main:before | |
{ | |
left: -300%; | |
bottom: 125%; | |
box-shadow: inset -10px -10px 880px rgb(100,148,227), 0 0 3px rgba(176,145,189,0.75) | |
} | |
.frame .main:after | |
{ | |
left: -400%; | |
bottom: 60%; | |
box-shadow: inset -10px -10px 880px rgb(300,190,32), 0 0 3px rgba(176,145,189,0.75) | |
} | |
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
<div class="frame"> | |
<div class="front"> | |
<div class="scene"></div> | |
</div> | |
<div class="main"> | |
<div class="scene"></div> | |
</div> | |
<div class="back"> | |
<div class="scene"></div> | |
</div> | |
</div> |
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
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment