Skip to content

Instantly share code, notes, and snippets.

@groenewege
Created October 26, 2012 08:31
Show Gist options
  • Save groenewege/3957629 to your computer and use it in GitHub Desktop.
Save groenewege/3957629 to your computer and use it in GitHub Desktop.
css - rounded corners
div[class*="rounded"] {
background: #fca1cc;
}
.light-rounded {
border-radius: 3px;
}
.heavy-rounded {
border-radius: 8px;
}
.full-rounded {
border-radius: 50%;
}
.barrel-rounded {
border-radius: 20px/60px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment