| 1 |
@import "layouts/common/style/outer.scss"; |
| 2 |
|
| 3 |
$border_radius: 5px; |
| 4 |
|
| 5 |
div.fca_eoi_layout_5, |
| 6 |
form.fca_eoi_layout_5 { |
| 7 |
@import "layouts/common/style/inner.scss"; |
| 8 |
|
| 9 |
div.fca_eoi_layout_headline_copy_wrapper { |
| 10 |
margin-bottom: ( $content_large_padding ); |
| 11 |
|
| 12 |
@media ( min-width: 1px ) and ( max-width: $content_small_breakpoint ), |
| 13 |
( min-height: 1px ) and ( max-height: $content_small_breakpoint ) { |
| 14 |
margin-bottom: 0; |
| 15 |
} |
| 16 |
} |
| 17 |
|
| 18 |
div.fca_eoi_layout_inputs_wrapper { |
| 19 |
@include fca_eoi_layout_inputs_wrapper( false ); |
| 20 |
} |
| 21 |
|
| 22 |
div.fca_eoi_layout_field_wrapper { |
| 23 |
border-radius: $border_radius; |
| 24 |
} |
| 25 |
|
| 26 |
div.fca_eoi_layout_field_inner { |
| 27 |
margin: 0 10px 0 5px; |
| 28 |
} |
| 29 |
|
| 30 |
div.fca_eoi_layout_submit_button_wrapper { |
| 31 |
border-bottom: solid 4px transparent; |
| 32 |
border-radius: 5px; |
| 33 |
padding: 0 !important; |
| 34 |
text-align: center; |
| 35 |
width: 100%; |
| 36 |
} |
| 37 |
|
| 38 |
div.fca_eoi_layout_submit_button_wrapper input { |
| 39 |
border: 0 !important; |
| 40 |
border-radius: $border_radius; |
| 41 |
font-weight: bold; |
| 42 |
margin: 0; |
| 43 |
height: 2.8em; |
| 44 |
padding: 0; |
| 45 |
text-shadow: 0 0 2px black; |
| 46 |
white-space: normal; |
| 47 |
width: 100%; |
| 48 |
} |
| 49 |
|
| 50 |
|
| 51 |
} |
| 52 |
|