Skip to content

Instantly share code, notes, and snippets.

@mnafricano
Created March 14, 2013 15:53
Show Gist options
  • Save mnafricano/5162539 to your computer and use it in GitHub Desktop.
Save mnafricano/5162539 to your computer and use it in GitHub Desktop.
A CodePen by Marcello Africano.
<!-- CSSDeck Logo -->
<div id="circle">
<div id="ring
<div id="ring"></div>
</div>
@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