33 lines
607 B
SCSS
33 lines
607 B
SCSS
@import 'variables';
|
|
|
|
$html-font-size: (16*8/12);
|
|
|
|
$circle_radius: 10;
|
|
|
|
$full_width: 600;
|
|
|
|
$heights: (
|
|
"cabezal": (400/16),
|
|
"descripcion": 25,
|
|
"ventajas": 27.5,
|
|
"dimensiones": 27.5,
|
|
"construido": 21.875,
|
|
"corporativos": (520/16),
|
|
"felices": 21.875,
|
|
"formulario": 30
|
|
);
|
|
|
|
$column1: 90;
|
|
$column2: 10;
|
|
|
|
$content_height: 0;
|
|
$column_height1: 0;
|
|
@each $name, $val in $heights {
|
|
$content_height: $content_height + $val;
|
|
@if $name != 'corporativos' and $name != 'felices' and $name != 'formulario' and $name != 'cabezal' {
|
|
$column_height1: $column_height1 + $val;
|
|
}
|
|
}
|
|
|
|
@import 'functions';
|