PluginProbe
Taboola / trunk
Taboola vtrunk
1.0.4 1.0.5 1.0.6 1.0.8 2.0.1 2.0.2 2.1.0 2.1.1 2.2.2 2.2.3 3.0.0 3.0.1 3.0.2 3.1.0 trunk 1.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.2 1.0.3
taboola / css / main.css

main.css in Taboola trunk, at css/main.css

422 lines 7.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .nav-tab-wrapper {
2 margin-bottom: 20px;
3 }
4 .nav-tab {
5 cursor: pointer;
6 }
7 .tab-content {
8 display: none;
9 }
10 .tab-content.active {
11 display: block;
12 }
13
14 a {
15 color: rgb(68,114,196);
16 text-decoration: none;
17 font-weight: bold;
18 }
19
20 .taboola-container {
21 padding: 20px;
22 padding-left: 0;
23 font-size: 14px;
24 background-color: #FAF9F6;
25 font-family: Roboto,Lato,Hind -apple-system,Helvetica Neue,sans-serif;
26 }
27
28 .settings_block {
29 background-color: #fff;
30 border: 1px solid #d4d9df;
31 border-radius: 8px;
32 margin-top: 10px;
33 width: 50%;
34 }
35
36 .settings_block.widget_settings_block { /* Give the widget settings block some extra space at the end */
37 padding-bottom: 15px;
38 }
39
40 .settings_block input {
41 border-color: #ccc; /* Most of the inputs are styled via jQuery. This is for any others - e.g. #publisher-id */
42 }
43
44 .publisher_welcome_massage{
45 float: right;
46 width: 36%;
47 padding: 20px 10px 10px 0px;
48 margin: 40px 6% 0 0;
49 background: #FFFACD;
50 border: 1px solid #d4d9df;
51 border-radius: 20px;
52 }
53
54 .switch_style{
55 margin : 10px 10px 20px 10px;
56 }
57
58 .switch_style_push{
59 float: right;
60 margin: 1px 10px 20px 10px;
61 }
62
63 .style_box1, .pub_id, .web_push_id{
64 padding: 10px 10px 0px 20px;
65 }
66
67 .statement{
68 padding: 10px 10px 10px 20px;
69 }
70
71 .widget_below, .widget_below_mid, .widget_below_mid_selector, .widget_below_home, .widget_below_home_selector{
72 width: 50%;
73 float: left;
74 padding: 5px 0px 0px 20px;
75 }
76
77 .mode_style, .mode_style_mid, .mode_style_home, .mode_style_home_selector{
78 width: 50%;
79 padding: 0px 0px 3px 20px;
80 float:left;
81 }
82
83 .placement_style, .placement_style_mid, .placement_style_home_occurrence,.placement_style_home {
84 padding: 0px 0px 8px 0px;
85 width: 50%;
86 float: right;
87 }
88
89 .widget_below_mid_selector{
90 padding: 8px 0px 0px 0px;
91 }
92
93 .placement_below_mid_occurrence,.mode_style_mid_selector {
94 padding: 0px 0px 8px 20px;
95 }
96
97 .heading_mid_home{
98 padding: 20px 0px 8px 20px;
99 }
100
101 #mid_occurrence_div, #mid_css_selector_div {
102 width: 50%;
103 float: left;
104 margin: 19px 0px 0px 0px;
105 }
106
107 /* slider button CSS */
108
109 .switch {
110 position: relative;
111 display: inline-block;
112 width: 45px;
113 height: 20px;
114 float: right;
115 }
116
117 .switch input {
118 opacity: 0;
119 width: 0;
120 height: 0;
121 }
122
123 .slider {
124 position: absolute;
125 cursor: pointer;
126 top: 0;
127 left: 0;
128 right: -1px;
129 bottom: 0;
130 background-color: #ccc;
131 -webkit-transition: .4s;
132 transition: .4s;
133 }
134
135 .slider:before {
136 position: absolute;
137 content: "";
138 height: 18px;
139 width: 18px;
140 left: 1px;
141 bottom: 1px;
142 background-color: white;
143 -webkit-transition: .4s;
144 transition: .4s;
145 }
146
147 input:checked + .slider {
148 background-color: #0f4c81;
149 }
150
151 input:focus + .slider {
152 box-shadow: 0 0 1px #0f4c81;
153 }
154
155 input:checked + .slider:before {
156 -webkit-transform: translateX(26px);
157 -ms-transform: translateX(26px);
158 transform: translateX(26px);
159 }
160
161 /* Rounded sliders */
162
163 .slider.round {
164 border-radius: 34px;
165 }
166
167 .slider.round:before {
168 border-radius: 50%;
169 }
170
171 /* slider button CSS */
172
173 .request_link {
174 float: right;
175 margin-right: 10px;
176 line-height: 26px;
177 }
178
179 /* hide and position tooltip */
180
181 .tooltip div{
182 visibility: hidden;
183 width: auto;
184 display: inline-block;
185 background: #0f4c81;
186 color: #ffffff;
187 font-weight: normal;
188 font-size: 12px;
189 border-radius: 6px;
190 padding: 5px;
191 margin-left: 5px;
192 max-width: 350px;
193 position: absolute;
194 z-index: 999;
195 transition-delay: 0.25s;
196 }
197
198 .tooltip div a:hover{
199 text-decoration: underline;
200 }
201
202 .tooltip{
203 opacity: 1 !important;
204 font-size: 13px !important;
205 display: contents !important;
206 }
207
208 .tooltip:hover div{
209 visibility: visible;
210 transition-delay: 0.5s;
211 }
212
213 .tooltip div a{
214 text-decoration: none;
215 font-weight: bold;
216 color: #fff;
217 }
218
219 .label-success {
220 background: #a4fba6 !important;
221 border: 1px solid #d2f2d4;
222 border-radius: 10px;
223 padding: 10px 30px 20px 10px;
224 font-size: 14px;
225 display: block;
226 margin-top: 10px;
227 color: green;
228 width: 50%;
229 }
230 .label-error {
231 background: #ffbaba;
232 border: 1px solid #ffbaba;
233 border-radius: 10px;
234 padding: 10px 30px 20px 10px;
235 font-size: 14px;
236 display: block;
237 margin-top: 10px;
238 color: red;
239 width: 50%;
240 }
241
242 .label-error ul {
243 list-style-position: inside;
244 list-style-type: disc;
245 text-indent: 2em;
246 }
247
248 .label-error p {
249 font-size: 14px;
250 }
251
252 .change_button{
253 float: right;
254 }
255
256 .apply_button{
257 /* margin-top: 20px; */
258 background-color: #0f4c81;
259 color: #fff;
260 padding: 0.8rem 1rem;
261 border-radius: 7px;
262 border: transparent;
263 float: right;
264 }
265
266 .apply_button:hover {
267 background-color: #1261A0;
268 cursor: pointer;
269 }
270
271 .helpTooltip__icon___1XWGN,
272 .helpTooltip__icon___1XWGN_read{
273 color: #b8c1ca;
274 width: 1em;
275 height: 1em;
276 margin: 4px;
277 }
278
279 .helpTooltip__icon___1XWGN_read{
280 margin-top: 4px;
281 }
282
283 .helpTooltip__icon___1XWGN_first{
284 color: #b8c1ca;
285 width: 1em;
286 height: 1em;
287 }
288
289 .checkbox_read{
290 padding: 0px 0px 5px 20px;
291 float: left;
292 }
293
294 label:hover{
295 cursor: default;
296 }
297
298 ::placeholder{
299 color: #DEDEDE;
300 }
301
302 .widget_h2,.general_h2{
303 font-size: 18px;
304 font-weight: 500;
305 }
306
307 .list_l1{
308 border-top: 1px solid #DEDEDE;
309 margin: 30px 20px 0px 0px;
310 margin-left: 14%;
311 }
312
313 .theme_image{
314 width: 50%;
315 }
316
317 .welcome_heading{
318 margin-left: 8%;
319 font-size: 1.5em;
320 }
321
322 .first_p,
323 .second_p{
324 margin-left: 14%;
325 font-size: 14px;
326 }
327
328 .list_l1 p{
329 font-size: 13px;
330 }
331 input.widefat,
332 input.widefat.mid-widget-type-selector{
333 width: 66%;
334 }
335
336 input#publisher-id,
337 input#first_bc_placement,
338 input#mid_placement,
339 input#home_placement,
340 input#category_placement{
341 width: 36%;
342 }
343
344 input#first_bc_widget_id,
345 input#mid_widget_id,
346 input#mid_location_string,
347 input#home_widget_id,
348 input#category_widget_id,
349 input#home_location_string,
350 input#category_location_string{
351 width: 77%;
352 }
353
354 label{
355 font-weight: normal !important;
356 }
357
358 label#pub_id{
359 color: #000000;
360 }
361
362 input#out_of_content_enabled, #webPush_header {
363 height: 16px;
364 width: 16px;
365 }
366
367 input[type=checkbox]:checked::before {
368 width: 1.8rem !important;
369 }
370
371 input[type=checkbox]:focus {
372 outline: none !important;
373 outline-offset: 0px !important;
374 }
375
376 input[type=checkbox]{
377 margin: -5px 0 0;
378 }
379
380 #homepage{
381 display: none;
382 }
383
384 #show-advanced-settings{
385 text-decoration: none;
386 color: #666666;
387 margin-top: 5px;
388 cursor: pointer;
389 float: left;
390 width: 50%;
391 font-family: Roboto, Lato, "Hind -apple-system", "Helvetica Neue", sans-serif;
392 font-style: italic;
393 }
394
395 #advanced-settings-main{
396 margin: 10px 0px 0px 10px;
397 width: 49%;
398 }
399
400 div#mid_article {
401 padding-bottom: 20px;
402 }
403
404 #mid_css_selector_div{
405 display: none;
406 }
407
408 input.highlight {
409 border: 1px solid orange !important;
410 }
411
412 #rightrail-banner{
413 border: 1px solid #d4d9df;
414 border-radius: 10px;
415 background: rgba(51, 125, 247, 0.1);
416 padding: 10px;
417
418 width: 95%;
419 margin: auto;
420 /* color: #0f4c81; */
421 }
422