Skip to content

Instantly share code, notes, and snippets.

@fieke
Created November 27, 2013 09:34
Show Gist options
  • Save fieke/7673037 to your computer and use it in GitHub Desktop.
Save fieke/7673037 to your computer and use it in GitHub Desktop.
responsive circles
.circle-text {
width:50%;
}
.circle-text:after {
content: "";
display: block;
width: 100%;
height:0;
padding-bottom: 100%;
background: #4679BD;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.circle-text div {
float:left;
width:100%;
padding-top:50%;
line-height:1em;
margin-top:-0.5em;
text-align:center;
color:white;
}
<div class="circle-text"><div>I'm a Circle!</div></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment