PluginProbe
EmailKit – Email Customizer for WooCommerce & WP / 1.5.2
EmailKit – Email Customizer for WooCommerce & WP v1.5.2
1.6.9 1.6.8 1.6.7 trunk 1.0.0 1.2.0 1.4.0 1.4.5 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6
emailkit / assets / admin / css / pro-popup.css

pro-popup.css in EmailKit – Email Customizer for WooCommerce & WP 1.5.2, at assets/admin/css/pro-popup.css

98 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 .emailkit_pro_overlay {
3 display: none;
4 position: fixed;
5 top: 0;
6 left: 0;
7 width: 100%;
8 height: 100%;
9 background: rgba(0, 0, 0, 0.7);
10 justify-content: center;
11 align-items: center;
12 z-index: 9999;
13 }
14
15 .emailkit_pro_overlay .pro-notice {
16 background: #fff;
17 text-align: center;
18 border-radius: 4px;
19 box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
20 position: relative;
21 /* height: 370px; */
22 max-width: 640px; /* Set your desired max-width */
23 margin: 100px auto; /* Center align */
24 }
25 .emailkit-admin-pro-content .emailkit-admin-pro-logo{
26 padding-top: 70px;
27 }
28 .emailkit-admin-pro-content .emailkit-admin-pro-logo img{
29 width: 100%;
30 height: 100%;
31 }
32 .emailkit_pro_overlay #buyProBtn {
33
34 color: #fff;
35 padding: 12px 20px;
36 border: none;
37 border-radius: 4px;
38 cursor: pointer;
39 font-family: 'Roboto', sans-serif;
40 font-size: 14px;
41 font-weight: 500;
42 border-radius: 4px;
43 background: #227BFF;
44 width: max-content;
45 transition: all .3s ease-in-out;
46 margin-bottom: 81px;
47 }
48 .emailkit_pro_overlay #buyProBtn span svg{
49 margin-bottom: -2px;
50 }
51 .emailkit_pro_overlay #buyProBtn:hover{
52 background-color: #1168E9;
53 }
54
55 .emailkit_pro_overlay #closeProBtn {
56 position: absolute;
57 top: 20px;
58 right: 20px;
59 cursor: pointer;
60 }
61 .emailkit_pro_overlay #closeProBtn svg path{
62 transition: all .3s ease-in-out;
63 }
64 .emailkit_pro_overlay #closeProBtn:hover svg path{
65 stroke: #202534;
66 }
67 .emailkit_pro_overlay .pro-notice .emailkit-admin-pro-content {
68 display: flex;
69 flex-direction: column;
70 justify-content: center;
71 align-items: center;
72 height: 100%;
73 }
74
75 .emailkit-admin-pro-content .emailkit-admin-pro-header .emailkit-admin-pro-header-text{
76 color: #202534;
77 text-align: center;
78 font-family: 'Roboto', sans-serif;
79 font-size: 36px;
80 font-style: normal;
81 font-weight: 700;
82 line-height: normal;
83 margin-bottom: 0px;
84 margin-top: 15px;
85 }
86 .emailkit-admin-pro-content .emailkit-admin-pro-subtext{
87 margin-top: 9px;
88 margin-bottom: 26px;
89 color: #55575D;
90 text-align: center;
91 font-family: "Roboto", sans-serif;
92 font-size: 16px;
93 font-style: normal;
94 font-weight: 400;
95 line-height: normal;
96 }
97
98