Skip to content

Instantly share code, notes, and snippets.

@dedosmedia
Last active February 22, 2016 12:32
Show Gist options
  • Save dedosmedia/20554efa191023e47aa9 to your computer and use it in GitHub Desktop.
Save dedosmedia/20554efa191023e47aa9 to your computer and use it in GitHub Desktop.
Aplicar un borde de color alrededor de la imagen
.border.transparent{
border: solid 5px transparent;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment