Created
March 14, 2013 15:53
-
-
Save mnafricano/5162539 to your computer and use it in GitHub Desktop.
A CodePen by Marcello Africano.
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
<!-- CSSDeck Logo --> | |
<div id="circle"> | |
<div id="ring | |
<div id="ring"></div> | |
</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
@import "compass"; | |
/* Variables */ | |
$circle-color: #000; | |
$circle-size: 125px; | |
$circle-roundness: 50%; | |
$ring-color: #000; | |
/* Inner Circle */ | |
#circle { | |
margin: 100px auto; | |
background-color: $circle-color; | |
width: $circle-size; | |
height: $circle-size; | |
border-radius: $circle-roundness; | |
} | |
#ring { | |
background-color: $ring-color; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment