PluginProbe
GetResponse Forms by Optin Cat / 1.7.0
GetResponse Forms by Optin Cat v1.7.0
1.3.4 1.3.5 1.3.6 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 1.8.0 1.8.1 2.0.0 All 36 releases
getresponse / layouts / common / layout_2 / layout.scss

layout.scss in GetResponse Forms by Optin Cat 1.7.0, at layouts/common/layout_2/layout.scss

78 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import "layouts/common/style/outer.scss";
2
3 $border_radius: 0;
4 $fold_size: 10px;
5
6 div.fca_eoi_layout_2,
7 form.fca_eoi_layout_2 {
8 @import "layouts/common/style/inner.scss";
9
10 div.fca_eoi_layout_headline_copy_wrapper {
11 position: relative;
12 margin: $content_large_padding -( $content_large_padding + $fold_size + 1 ) $content_large_padding;
13 padding: $content_large_padding;
14 }
15
16 svg {
17 &.fca_eoi_layout_fold {
18 position: absolute;
19 width: $fold_size;
20 height: $fold_size;
21 bottom: -( $fold_size );
22 fill: #595959;
23 }
24
25 &.fca_eoi_layout_fold_left {
26 left: 0;
27 }
28
29 &.fca_eoi_layout_fold_right {
30 right: 0;
31 }
32 }
33
34 div.fca_eoi_layout_inputs_wrapper {
35 @include fca_eoi_layout_inputs_wrapper( false );
36 }
37
38 @import "layouts/common/style/icons_left.scss";
39
40 div.fca_eoi_layout_field_wrapper {
41 border-radius: $border_radius;
42 }
43
44 div.fca_eoi_layout_submit_button_wrapper {
45 width: 100%;
46 padding-bottom: 5px;
47
48 input {
49 border: 0 transparent;
50 border-radius: $border_radius;
51 box-shadow: none;
52 font-weight: bold;
53 padding: .5em;
54 width: 100%;
55 white-space: normal;
56
57 }
58
59 }
60
61 @media ( min-width: 1px ) and ( max-width: $content_small_breakpoint ),
62 ( min-height: 1px ) and ( max-height: $content_small_breakpoint ) {
63 div.fca_eoi_layout_headline_copy_wrapper {
64 position: relative;
65 margin: -( $content_small_padding_vertical + 1 ) -( $content_small_padding_horizontal + 1 );
66 padding: ( $content_small_padding_vertical + 1 ) ( $content_small_padding_horizontal + 1 );
67 }
68
69 svg.fca_eoi_layout_fold {
70 display: none;
71 }
72
73 div.fca_eoi_layout_description_copy_wrapper {
74 margin: round( $content_small_padding_vertical * 2 ) 0 0;
75 }
76 }
77 }
78