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 / style / inner.scss

inner.scss in GetResponse Forms by Optin Cat 1.7.0, at layouts/common/style/inner.scss

157 lines 4.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 $content_large_padding: 20px;
2 $content_small_padding_vertical: round( $content_large_padding / 2.5 );
3 $content_small_padding_horizontal: round( $content_large_padding / 1.5 );
4 $content_small_breakpoint: 450px;
5 $content_tiny_breakpoint: 320px;
6
7 @mixin fca_eoi_layout_inputs_wrapper( $withDelimiter ) {
8 @if $withDelimiter {
9 border-top: 1px solid #DBDBDB;
10 border-bottom: 1px solid #DBDBDB;
11 padding: $content_large_padding 0;
12
13 @media ( min-width: 1px ) and ( max-width: $content_small_breakpoint ),
14 ( min-height: 1px ) and ( max-height: $content_small_breakpoint ) {
15 padding: $content_small_padding_vertical 0;
16 }
17
18 @media ( min-width: 1px ) and ( max-width: $content_tiny_breakpoint ),
19 ( min-height: 1px ) and ( max-height: $content_tiny_breakpoint ) {
20 padding: 0;
21 border: none;
22 }
23 }
24
25 margin: $content_large_padding 0;
26
27 @media ( min-width: 1px ) and ( max-width: $content_small_breakpoint ),
28 ( min-height: 1px ) and ( max-height: $content_small_breakpoint ) {
29 margin: $content_small_padding_vertical 0;
30 }
31 }
32
33 & {
34 display: inline-block;
35 }
36
37 &.fca_eoi_layout_widget {
38 max-width: 300px;
39 }
40
41 &.fca_eoi_layout_postbox {
42 max-width: 600px;
43 }
44
45 &.fca_eoi_layout_popup {
46 max-width: 650px;
47 }
48
49 &.fca_eoi_layout_widget div.fca_eoi_layout_field_wrapper {
50 float: none;
51 width: 100%;
52 }
53
54 div.fca_eoi_layout_content_wrapper {
55 margin: $content_large_padding;
56 }
57
58 div.fca_eoi_layout_field_wrapper {
59 border: solid 1px transparent;
60 width: 49%;
61 border-radius: 3px;
62 margin-bottom: 10px;
63 position: relative;
64 }
65
66 div.fca_eoi_layout_name_field_wrapper {
67 @if $ltr { float: left; } @else { float: right; }
68 }
69
70 div.fca_eoi_layout_email_field_wrapper {
71 @if $ltr { float: right; } @else { float: left; }
72 }
73
74 div.fca_eoi_layout_inputs_wrapper_no_name div.fca_eoi_layout_field_wrapper {
75 float: none;
76 width: 100%;
77 }
78
79 div.fca_eoi_layout_field_wrapper input,
80 div.fca_eoi_layout_field_wrapper input:focus {
81 border: none !important;
82 width: 100%;
83 height: auto;
84 font-size: 16px;
85 line-height: 1.2em;
86 padding: 7px 0;
87 outline: none;
88 background: none !important;
89 box-shadow: none;
90 }
91
92 div.fca_eoi_layout_submit_button_wrapper {
93 clear: both;
94 transition: background 350ms linear, border-color 350ms linear;
95 }
96
97 div.fca_eoi_layout_fatcatapps_link_wrapper a {
98 display: block;
99 margin: round( $content_large_padding / 2 ) 0 0;
100 font-size: 12px;
101 }
102
103 &.fca_eoi_layout_popup,
104 &.fca_eoi_layout_widget,
105 &.fca_eoi_layout_postbox {
106 div.fca_eoi_layout_content_wrapper {
107 div.fca_eoi_form_text_element.fca_eoi_layout_headline_copy_wrapper div,
108 div.fca_eoi_form_text_element.fca_eoi_layout_description_copy_wrapper div,
109 div.fca_eoi_layout_field_wrapper i.fa:before,
110 div.fca_eoi_layout_field_wrapper div.fca_eoi_layout_field_inner input,
111 div.fca_eoi_layout_field_wrapper div.fca_eoi_layout_field_inner input:focus,
112 div.fca_eoi_layout_submit_button_wrapper input,
113 div.fca_eoi_layout_submit_button_wrapper input:focus,
114 div.fca_eoi_form_text_element.fca_eoi_layout_privacy_copy_wrapper div,
115 div.fca_eoi_layout_fatcatapps_link_wrapper a {
116 @media (min-width: 1px) and (max-width: $content_small_breakpoint),
117 (min-height: 1px) and (max-height: $content_small_breakpoint) {
118 font-size: 13px !important;
119 }
120 @media (min-width: 1px) and (max-width: $content_tiny_breakpoint),
121 (min-height: 1px) and (max-height: $content_tiny_breakpoint) {
122 font-size: 12px !important;
123 }
124 }
125 }
126 }
127
128 @media ( min-width: 1px ) and ( max-width: $content_small_breakpoint ),
129 ( min-height: 1px ) and ( max-height: $content_small_breakpoint ) {
130 div.fca_eoi_layout_content_wrapper {
131 margin: $content_small_padding_vertical $content_small_padding_horizontal;
132 }
133
134 div.fca_eoi_layout_fatcatapps_link_wrapper a {
135 margin: 0;
136 }
137
138 div.fca_eoi_form_text_element.fca_eoi_layout_headline_copy_wrapper {
139 margin-bottom: 5px;
140 }
141 }
142
143 @media ( min-width: 1px ) and ( max-width: $content_tiny_breakpoint ),
144 ( min-height: 1px ) and ( max-height: $content_tiny_breakpoint ) {
145 div.fca_eoi_layout_popup_close {
146 top: -1px;
147 right: -1px;
148 }
149 }
150
151 @media ( min-width: 1px ) and ( max-width: 768px ) {
152 div.fca_eoi_layout_field_wrapper {
153 float: none;
154 width: 100%;
155 }
156 }
157