25 lines
396 B
SCSS
25 lines
396 B
SCSS
|
#dimensiones {
|
||
|
position: relative;
|
||
|
|
||
|
background-image: $fondo_ventajas_dimensiones;
|
||
|
|
||
|
.fondo-gris {
|
||
|
position: absolute;
|
||
|
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background-color: rgba($gris, .5);
|
||
|
}
|
||
|
|
||
|
.left.column {
|
||
|
&>.grid {
|
||
|
&>.column:first-child {
|
||
|
min-width: 33% !important;
|
||
|
}
|
||
|
&>.column:last-child {
|
||
|
min-width: 67% !important;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|