18 lines
484 B
SCSS
18 lines
484 B
SCSS
// Colores
|
|
$blanco: rgb(255, 255, 255);
|
|
$negro: rgb(0, 0, 0);
|
|
$gris: rgb(204, 204, 204);
|
|
$gris_transparencia: rgba($gris, .5);
|
|
$gris_standard: rgb(51, 51, 51);
|
|
$gris_claro: rgb(102, 102, 102);
|
|
$azul: rgb(0, 66, 123);
|
|
|
|
// Tipografias
|
|
$font_family: Roboto, sans;
|
|
|
|
// Fondos
|
|
$fondo_cabezal: url('../images/banner.jpg');
|
|
$fondo_ventajas_dimensiones: url('../images/tripode.png');
|
|
$fondo_construidos: url('../images/construido.jpg');
|
|
$fondo_corporativos: url('../images/corporativo.png');
|