| 1 |
@import "layouts/common/style/outer.scss"; |
| 2 |
|
| 3 |
div.fca_eoi_layout_1, |
| 4 |
form.fca_eoi_layout_1 { |
| 5 |
@import "layouts/common/style/inner.scss"; |
| 6 |
|
| 7 |
div.fca_eoi_layout_headline_copy_wrapper { |
| 8 |
margin-bottom: round( $content_large_padding / 2 ); |
| 9 |
} |
| 10 |
|
| 11 |
div.fca_eoi_layout_inputs_wrapper { |
| 12 |
@include fca_eoi_layout_inputs_wrapper( true ); |
| 13 |
} |
| 14 |
|
| 15 |
@import "layouts/common/style/icons_left.scss"; |
| 16 |
|
| 17 |
div.fca_eoi_layout_submit_button_wrapper input { |
| 18 |
border: 1px solid #EEC22B; |
| 19 |
box-shadow: 0 1px 1px rgba( 255, 255, 255, .9 ) inset; |
| 20 |
font-weight: bold; |
| 21 |
margin: 0; |
| 22 |
min-height: 40px; |
| 23 |
width: 100%; |
| 24 |
white-space: normal; |
| 25 |
background: none; |
| 26 |
background: -moz-linear-gradient( top, rgba( 255, 255, 255, 0.35 ) 0%, rgba( 255, 255, 255, 0.45 ) 48%, rgba( 255, 255, 255, 0 ) 52%, rgba( 255, 255, 255, 0 ) 100% ); |
| 27 |
background: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, rgba( 255, 255, 255, 0.35 ) ), color-stop( 48%, rgba( 255, 255, 255, 0.45 ) ), color-stop( 52%, rgba( 255, 255, 255, 0 ) ), color-stop( 100%, rgba( 255, 255, 255, 0 ) ) ); |
| 28 |
background: -webkit-linear-gradient( top, rgba( 255, 255, 255, 0.35 ) 0%, rgba( 255, 255, 255, 0.45 ) 48%, rgba( 255, 255, 255, 0 ) 52%, rgba( 255, 255, 255, 0 ) 100% ); |
| 29 |
background: -o-linear-gradient( top, rgba( 255, 255, 255, 0.35 ) 0%, rgba( 255, 255, 255, 0.45 ) 48%, rgba( 255, 255, 255, 0 ) 52%, rgba( 255, 255, 255, 0 ) 100% ); |
| 30 |
background: -ms-linear-gradient( top, rgba( 255, 255, 255, 0.35 ) 0%, rgba( 255, 255, 255, 0.45 ) 48%, rgba( 255, 255, 255, 0 ) 52%, rgba( 255, 255, 255, 0 ) 100% ); |
| 31 |
background: linear-gradient( to bottom, rgba( 255, 255, 255, 0.35 ) 0%, rgba( 255, 255, 255, 0.45 ) 48%, rgba( 255, 255, 255, 0 ) 52%, rgba( 255, 255, 255, 0 ) 100% ); |
| 32 |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#59ffffff', endColorstr='#00ffffff', GradientType=0 ); |
| 33 |
} |
| 34 |
|
| 35 |
|
| 36 |
@media ( min-width: 1px ) and ( max-width: $content_small_breakpoint ), |
| 37 |
( min-height: 1px ) and ( max-height: $content_small_breakpoint ) { |
| 38 |
div.fca_eoi_layout_headline_copy_wrapper { |
| 39 |
margin-bottom: 0; |
| 40 |
} |
| 41 |
} |
| 42 |
|
| 43 |
|
| 44 |
} |
| 45 |
|