Skip to content

Instantly share code, notes, and snippets.

@davo
Created October 11, 2015 01:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davo/1347f45f606f4fcef207 to your computer and use it in GitHub Desktop.
Save davo/1347f45f606f4fcef207 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// Crear la clases y poner un borde en color RGBA.
$infraestructura: rgba(204, 162, 252,.5);
$salud: rgba(43, 253, 166,.5);
$educacion: rgba(136, 255, 255,.5);
$ejes: (salud educacion infraestructura);
@each $eje in $ejes {
.#{$eje} {
border-bottom: 1px solid #{$eje};
}
}
.salud {
border-bottom: 1px solid salud;
}
.educacion {
border-bottom: 1px solid educacion;
}
.infraestructura {
border-bottom: 1px solid infraestructura;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment