PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.15
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.15
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / css / frm_overlay.css

frm_overlay.css in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.15, at css/frm_overlay.css

67 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .frm-overlay--wrapper {
2 position: absolute;
3 top: 0; left: 0;
4 width: 100%;
5 min-height: 100%;
6 z-index: 1002;
7 color:white;
8 }
9 .frm-overlay--wrapper:before {
10 content: '';
11 display: block;
12 position: absolute;
13 top: 0;
14 left: 0;
15 width: 100%;
16 height: 100%;
17 background: rgba( 16, 24, 40, 0.85 );
18 z-index: 1;
19 }
20 .frm-overlay--close {
21 position: absolute;
22 top: 32px; right: 32px;
23 z-index:10;
24 display:block;
25 width: 32px;
26 height: 32px;
27 background: url( '../images/overlay/close-overlay.svg' ) no-repeat;
28 cursor: pointer;
29 }
30 body.admin-bar:not(.frm-full-screen) .frm-overlay--close {
31 top:40px;
32 }
33 .frm-overlay--container {
34 text-align: center;
35 position: absolute;
36 top: 0;
37 left: 0;
38 right: 0;
39 bottom: 0;
40 margin: auto;
41 z-index:8;
42 max-width: 468px;
43 height: 260px;
44 }
45 .frm-overlay--container .frm-overlay--heading {
46 margin-bottom: var( --gap-xs );
47 font-weight: 600;
48 color: white;
49 }
50
51 .frm-overlay--container .frm-overlay--cta {
52 margin-top: var(--gap-lg);
53 justify-content: center;
54 gap: var( --gap-sm );
55 }
56
57 .frm-overlay--container .frm-overlay--cta a:nth-child(2){
58 color: white;
59 background: var( --primary-color );
60 }
61 .frm-overlay--hero-image,
62 .frm-overlay--heading,
63 .frm-overlay--copy,
64 .frm-overlay--cta a {
65 opacity: 0.0;
66 }
67