PluginProbe
GSpeech TTS – WordPress Text To Speech Plugin / 3.21.0
GSpeech TTS – WordPress Text To Speech Plugin v3.21.0
3.21.5 3.21.4 3.21.3 3.21.1 3.21.2 3.20.8 3.21.0 3.20.7 3.20.6 3.20.4 3.20.5 3.20.3 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.10.0 3.10.1 3.10.2 3.10.3 3.11.0 3.11.1 3.11.2 3.12.0 All 161 releases
gspeech / includes / css / gspeech-inline.css

gspeech-inline.css in GSpeech TTS – WordPress Text To Speech Plugin 3.21.0, at includes/css/gspeech-inline.css

226 lines 4.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 #toplevel_page_gspeech .wp-submenu li:last-child a {
2 color: #d3a3f8 !important;
3 }
4 .gspeech-plugin-gopro {
5 color: #571891 !important;
6 font-weight: bold;
7 }
8
9 .gsp_modal_header {
10 background-color: #ededed;
11 border-bottom: 1px solid #892bcb52;
12 padding: 15px 0 15px 40px;
13 }
14 .gsp_modal_footer {
15 background-color: #ededed;
16 border-top: 1px solid #c2c2c2;
17 padding: 20px 25px 20px 25px;
18 position: relative;
19
20 display: flex;
21 flex-direction: row;
22 justify-content: space-between;
23 }
24 .gsp_modal_header h4 {
25 text-transform: uppercase;
26 font-size: 15px;
27 margin: 0 !important;
28 padding: 0 !important;
29 color: #610f97;
30 position: relative;
31 }
32 .gsp_modal_logo {
33 border-radius: 3px;
34 position: absolute;
35 width: 20px;
36 height: 19px;
37 left: 14px;
38 top: 15px;
39 background-color: #4d077c;
40 background-image: url(../images/g_logo_small.png);
41 background-repeat: no-repeat;
42 background-position: center;
43 }
44
45 .gsp_modal_body {
46 padding: 0 25px;
47 }
48 .gsp_modal_body_inner h3 {
49 margin-top: 25px;
50 margin-bottom: 19px;
51 line-height: 21px;
52 color: #111;
53 font-size: 16px;
54 }
55
56 .gsp_reasons_list {
57 list-style: none;
58 margin-bottom: 20px;
59 }
60 .gsp_reasons_list li {
61 margin-bottom: 9px;
62 }
63
64 .gsp_reason_group {
65 display: flex;
66 flex-direction: row;
67 align-items: center;
68 }
69 .gsp_reason_group input {
70 flex-shrink: 0;
71 }
72 .gsp_reason_group label {
73 color: #2f2f2f;
74 font-size: 13px;
75 margin-left: 7px;
76 transform: translateY(-2px);
77 }
78
79 .gsp_button {
80 width: 160px;
81 height: 34px;
82 display: flex;
83 align-items: center;
84 justify-content: center;
85 border-radius: 4px;
86 border: none;
87 padding: 0px;
88 color: #333;
89 transition: all 400ms cubic-bezier(0.39, 0.575, 0.565, 1);
90 text-decoration: none;
91 cursor: pointer;
92 }
93 .gsp_button:hover {
94 color: #333;
95 transform: scale(1.05,1.05);
96 }
97 .gsp_button_submit_deactivate {
98 background-color: #682296;
99 text-shadow: 0 1px 2px #000000b8;
100 color: #fff;
101 }
102 .gsp_button_submit_deactivate:hover {
103 background-color: #8227bd;
104 color: #fff;
105 }
106 .gsp_button_skip_deactivate {
107 background-color: #fbfafa;
108 }
109 .gsp_button_skip_deactivate:hover {
110 background-color: #c8c8c8;
111 }
112
113 .gsp_vis {
114 display: block !important;
115 }
116 .gsp_hidden {
117 display: none !important;
118 }
119
120 /*gsp dialog*/
121 .gsp_dialog_overlay {
122 position: fixed;
123 top: 0;
124 left: 0;
125 width: 100%;
126 height: 100%;
127 z-index: 100001;
128 background-color: rgb(0 0 0 / 80%);
129 opacity: 0;
130 display: none !important;
131 transition: all 600ms cubic-bezier(0.39, 0.575, 0.565, 1);
132 }
133 .gsp_dialog_overlay.gsp_vis {
134 display: block !important;
135 }
136 .gsp_dialog_overlay.gsp_op_1 {
137 opacity: 1;
138 }
139
140 .gsp_ldg_wrapper {
141 border-radius: 5px;
142 position: absolute;
143 background-color: #0000009e;
144 width: 160px;
145 height: 34px;
146 left: 25px;
147 top: 20px;
148 }
149 .gsp_ldg {
150 position: absolute;
151 top: 50%;
152 left: 50%;
153 transform: translate(-50%, -50%);
154 width: 22px;
155 height: 22px;
156 color: #fff;
157 animation: gsp_rotating 1.6s linear infinite;
158 }
159 .gsp_ldg svg {
160 display: block;
161 width: 100%;
162 height: 100%;
163 }
164
165 .gsp_modal_wrapper {
166 display: none;
167 box-sizing: border-box;
168 position: fixed;
169 left: 50%;
170 top: 100px;
171 z-index: 100002;
172 transform: translateX(-50%);
173 width: 596px;
174 background-color: #fff;
175 min-height: 50px;
176 border-radius: 7px;
177 overflow: hidden;
178 box-shadow: 0 0 2px 1px rgb(0 0 0 / 20%);
179 opacity: 0;
180 transition: all 600ms cubic-bezier(0.39, 0.575, 0.565, 1);
181 }
182 .gsp_modal_wrapper.gsp_op_1 {
183 opacity: 1;
184 }
185
186 .gsp_checked .gsp_reason_input {
187 display: block;
188 }
189 .gsp_reason_input {
190 margin-top: 10px;
191 display: none;
192
193 }
194 .gsp_reason_input input,
195 .gsp_reason_input textarea {
196 width: 100%;
197 }
198 .gsp_reason_input input:focus,
199 .gsp_reason_input textarea:focus,
200 .gsp_reason_input input:hover,
201 .gsp_reason_input textarea:hover,
202 .gsp_reason_input input:active,
203 .gsp_reason_input textarea:active {
204 border: 1px solid #e781f9;
205 outline: none;
206 box-shadow: none;
207 }
208
209
210
211
212 @media (max-width: 650px) {
213 .gsp_modal_wrapper {
214 box-sizing: border-box;
215 width: 100%;
216 }
217 }
218
219 @keyframes gsp_rotating {
220 0% {
221 transform: translate(-50%, -50%) rotate(0deg);
222 }
223 100% {
224 transform: translate(-50%, -50%) rotate(360deg);
225 }
226 }