33 lines
600 B
SCSS
33 lines
600 B
SCSS
|
@import 'variables';
|
||
|
|
||
|
$html-font-size: 16px;
|
||
|
|
||
|
$circle_radius: 12;
|
||
|
|
||
|
$full_width: 1080;
|
||
|
|
||
|
$heights: (
|
||
|
"cabezal": (500/16),
|
||
|
"seccion1": 25,
|
||
|
"seccion2": 27.5,
|
||
|
"dimensiones": 27.5,
|
||
|
"construido": 21.875,
|
||
|
"corporativos": (520/16),
|
||
|
"felices": 21.875,
|
||
|
"formulario": 30
|
||
|
);
|
||
|
|
||
|
$column1: 67;
|
||
|
$column2: 33;
|
||
|
|
||
|
$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';
|