Skip to content

Instantly share code, notes, and snippets.

@dedosmedia
Last active February 24, 2016 04:13
Show Gist options
  • Save dedosmedia/cfa81c82859b9213c5fc to your computer and use it in GitHub Desktop.
Save dedosmedia/cfa81c82859b9213c5fc to your computer and use it in GitHub Desktop.
CSS: Efecto de Borde para Feedback en Botones. Wrong, Ok, Normal
.border{
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
border:solid 5px #EFB20F;
}
.border.wrong{
border: solid 5px #E11C24 !important;
}
.border.ok{
border: solid 5px #39A94A !important;
}
.border.transparent{
border: solid 5px transparent !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment