| 1 |
/* ========= INFORMATION ============================ |
| 2 |
- document: Wow Plugin! |
| 3 |
- author: Dmytro Lobov |
| 4 |
- version: 1.0 |
| 5 |
|
| 6 |
==================================================== */ |
| 7 |
|
| 8 |
/* Tab style */ |
| 9 |
.wow-plugin .tab-box{ |
| 10 |
width: 100%; |
| 11 |
box-sizing: border-box; |
| 12 |
} |
| 13 |
.wow-plugin .tab-box:after{ |
| 14 |
clear:both; |
| 15 |
content:""; |
| 16 |
display:block; |
| 17 |
} |
| 18 |
.wow-plugin .tab-nav{ |
| 19 |
margin:0; |
| 20 |
padding:0; |
| 21 |
list-style:none; |
| 22 |
width:145px; |
| 23 |
float:left; |
| 24 |
border-right: 1px solid #1f9ef8; |
| 25 |
|
| 26 |
} |
| 27 |
.wow-plugin .tab-nav li{ |
| 28 |
float:left; |
| 29 |
margin-bottom:1px; |
| 30 |
} |
| 31 |
.wow-plugin .tab-nav li a{ |
| 32 |
display:inline-block; |
| 33 |
width:125px; |
| 34 |
padding:10px 10px; |
| 35 |
font-size:14px; |
| 36 |
color:#000; |
| 37 |
text-decoration:none; |
| 38 |
} |
| 39 |
.wow-plugin .tab-nav li a:hover{ |
| 40 |
color:#000; |
| 41 |
text-decoration:none; |
| 42 |
font-weight: 700; |
| 43 |
} |
| 44 |
.wow-plugin .tab-nav li.select a{ |
| 45 |
background: #fff; |
| 46 |
box-shadow: none; |
| 47 |
border-bottom: 1px solid #1f9ef8; |
| 48 |
font-weight: 700; |
| 49 |
} |
| 50 |
.wow-plugin .tab-nav .active{ |
| 51 |
display:inline-block; |
| 52 |
padding:5px; |
| 53 |
} |
| 54 |
.wow-plugin .tab-box>div{ |
| 55 |
margin:0 0 0 145px; |
| 56 |
padding:10px; |
| 57 |
border-left: 1px solid #1f9ef8; |
| 58 |
} |
| 59 |
.wow-plugin .tab-panels{ |
| 60 |
background:#fff; |
| 61 |
} |
| 62 |
|
| 63 |
/* Flexbox elements */ |
| 64 |
.wow-container { |
| 65 |
display: flex; |
| 66 |
justify-content: space-around; |
| 67 |
} |
| 68 |
.wow-container .wow-element { |
| 69 |
width: 100%; |
| 70 |
padding:10px; |
| 71 |
} |
| 72 |
.wow-plugin label { |
| 73 |
font-weight: 600; |
| 74 |
cursor: default; |
| 75 |
} |
| 76 |
.wow-plugin label[for] { |
| 77 |
cursor: pointer; |
| 78 |
} |
| 79 |
/* form elements style */ |
| 80 |
.wow-element input[type=text],.wow-element input[type=tel],.wow-element input[type=number], .wow-element input[type=date], .wow-element select , .wow-element textarea{ |
| 81 |
width: 100%; |
| 82 |
-moz-box-sizing: border-box; |
| 83 |
box-sizing: border-box; |
| 84 |
display: inline-block; |
| 85 |
} |
| 86 |
|
| 87 |
.wow-plugin fieldset { |
| 88 |
border: 1px solid #eee; |
| 89 |
margin: 15px 0; |
| 90 |
} |
| 91 |
.wow-plugin legend { |
| 92 |
font-size: 18px; |
| 93 |
font-weight: bold; |
| 94 |
padding: 0 25px 0 10px; |
| 95 |
} |
| 96 |
|
| 97 |
/* Tooltip container */ |
| 98 |
.wow-help { |
| 99 |
font-size: 14px; |
| 100 |
cursor:help; |
| 101 |
} |
| 102 |
.wow-ui-tooltip{ |
| 103 |
position:absolute; |
| 104 |
background:#333; |
| 105 |
border-width:1px!important; |
| 106 |
border-radius:3px!important; |
| 107 |
box-shadow:1px 1px 2px 1px rgba(214,214,214,.5)!important; |
| 108 |
color:#dedede!important; |
| 109 |
max-width:300px!important; |
| 110 |
padding:7px!important; |
| 111 |
text-rendering:optimizeLegibility; |
| 112 |
text-shadow:none!important; |
| 113 |
z-index: 100051!important; |
| 114 |
} |
| 115 |
|
| 116 |
/* Right Sidebar */ |
| 117 |
.wow-sidebar h2 { |
| 118 |
border-bottom: 1px solid #eee; |
| 119 |
} |
| 120 |
|
| 121 |
.wow-sidebar .wow-element { |
| 122 |
padding: 0; |
| 123 |
} |
| 124 |
|
| 125 |
.wow-sidebar .wow-element h4 { |
| 126 |
line-height: auto; |
| 127 |
font-size: 14px; |
| 128 |
margin: 0 0 10px 0; |
| 129 |
} |
| 130 |
|
| 131 |
.wow-facebook::after { |
| 132 |
font-family: dashicons; |
| 133 |
content: "\f305"; |
| 134 |
margin-left: 5px; |
| 135 |
} |
| 136 |
|
| 137 |
.wow-email::after { |
| 138 |
font-family: dashicons; |
| 139 |
content: "\f469"; |
| 140 |
margin-left: 5px; |
| 141 |
} |
| 142 |
|
| 143 |
/* |
| 144 |
Support Page |
| 145 |
*/ |
| 146 |
|
| 147 |
.wow-support { |
| 148 |
margin: 25px auto 0; |
| 149 |
padding: 15px; |
| 150 |
background: #FFFFFF; |
| 151 |
border: 1px solid #999999; |
| 152 |
|
| 153 |
|
| 154 |
} |
| 155 |
|
| 156 |
.feature-section.one-col p { |
| 157 |
font-size: 16px; |
| 158 |
} |
| 159 |
|
| 160 |
.wow-alert-error { |
| 161 |
color: #a94442; |
| 162 |
background-color: #f2dede; |
| 163 |
border-color: #ebccd1; |
| 164 |
} |
| 165 |
|
| 166 |
.wow-alert-update { |
| 167 |
color: #94a540; |
| 168 |
background-color: #e7f7e3; |
| 169 |
border-color: #c7e5dc; |
| 170 |
} |
| 171 |
|
| 172 |
.wow-alert { |
| 173 |
-webkit-border-radius: 2px; |
| 174 |
-moz-border-radius: 2px; |
| 175 |
border-radius: 2px; |
| 176 |
margin-bottom: 20px; |
| 177 |
padding: 10px; |
| 178 |
border: 1px solid transparent; |
| 179 |
vertical-align: middle; |
| 180 |
} |
| 181 |
|
| 182 |
p.wow_error { |
| 183 |
margin: 0 !important; |
| 184 |
} |
| 185 |
|
| 186 |
/** |
| 187 |
Plugin custom style |
| 188 |
*/ |
| 189 |
|
| 190 |
/* Pro page */ |
| 191 |
|
| 192 |
.feature-section.one-col p { |
| 193 |
font-size: 16px; |
| 194 |
} |
| 195 |
|
| 196 |
.faq-title { |
| 197 |
cursor: pointer; |
| 198 |
} |
| 199 |
|
| 200 |
.faq-title:before { |
| 201 |
content: "\f132"; |
| 202 |
font-family: Dashicons; |
| 203 |
vertical-align: bottom; |
| 204 |
margin-right: 8px; |
| 205 |
color: #e95645; |
| 206 |
} |
| 207 |
|
| 208 |
.toggleshow:before { |
| 209 |
content: "\f132"; |
| 210 |
font-family: Dashicons; |
| 211 |
color: #e95645 |
| 212 |
} |
| 213 |
|
| 214 |
.togglehide:before { |
| 215 |
content: "\f460"; |
| 216 |
font-family: Dashicons; |
| 217 |
} |
| 218 |
|
| 219 |
.item-title { |
| 220 |
margin: 1.25em 0 .6em; |
| 221 |
font-size: 1em; |
| 222 |
line-height: 1; |
| 223 |
color: #1e73be; |
| 224 |
} |
| 225 |
|
| 226 |
.items .inside { |
| 227 |
margin: 10px 10px 10px 20px; |
| 228 |
display: none; |
| 229 |
} |
| 230 |
|
| 231 |
.feature-section ul { |
| 232 |
margin-left: 10px; |
| 233 |
} |
| 234 |
|
| 235 |
.feature-section ul li:before { |
| 236 |
content: "\f147"; |
| 237 |
font-family: Dashicons; |
| 238 |
margin-right: 5px; |
| 239 |
color: #e95645 |
| 240 |
} |
| 241 |
|
| 242 |
.wow-btn { |
| 243 |
width: 380px; |
| 244 |
display: inline-block; |
| 245 |
height: 42px; |
| 246 |
background: #43cb83; |
| 247 |
border-radius: 3px; |
| 248 |
line-height: 42px; |
| 249 |
text-align: center; |
| 250 |
color: #fff !important; |
| 251 |
text-decoration: none; |
| 252 |
font-size: 18px; |
| 253 |
font-weight: 500; |
| 254 |
cursor: pointer; |
| 255 |
border: none; |
| 256 |
} |
| 257 |
|
| 258 |
.wow-btn:hover { |
| 259 |
background: #5cc38d; |
| 260 |
} |
| 261 |
|
| 262 |
.wow-btn-demo { |
| 263 |
width: 380px; |
| 264 |
display: inline-block; |
| 265 |
height: 42px; |
| 266 |
background: #1f9ef8; |
| 267 |
border-radius: 3px; |
| 268 |
line-height: 42px; |
| 269 |
text-align: center; |
| 270 |
color: #fff !important; |
| 271 |
text-decoration: none; |
| 272 |
font-size: 18px; |
| 273 |
font-weight: 500; |
| 274 |
cursor: pointer; |
| 275 |
border: none; |
| 276 |
} |
| 277 |
|
| 278 |
.wow-btn-demo:hover { |
| 279 |
background: #128be0; |
| 280 |
} |
| 281 |
|
| 282 |
.wow-btn .dashicons, |
| 283 |
.wow-btn-demo .dashicons { |
| 284 |
line-height: 42px; |
| 285 |
font-size: 24px; |
| 286 |
} |
| 287 |
|
| 288 |
/** |
| 289 |
Plugin custom style |
| 290 |
*/ |
| 291 |
|
| 292 |
|
| 293 |
.button-preview { |
| 294 |
background-color: #fff; |
| 295 |
min-height: 200px; |
| 296 |
border-bottom: 1px solid #eee; |
| 297 |
-moz-box-sizing: border-box; |
| 298 |
box-sizing: border-box; |
| 299 |
position: relative; |
| 300 |
} |
| 301 |
|
| 302 |
.button-preview h3 { |
| 303 |
padding: 15px; |
| 304 |
border-bottom: 1px solid #eee; |
| 305 |
} |
| 306 |
|
| 307 |
.button-builder { |
| 308 |
text-align: center; |
| 309 |
} |
| 310 |
|
| 311 |
#button-preview { |
| 312 |
margin: 10px auto; |
| 313 |
} |
| 314 |
|
| 315 |
.ideas .dashicons-star-filled { |
| 316 |
color: #ffcc01; |
| 317 |
} |
| 318 |
|
| 319 |
.ideas .dashicons-share { |
| 320 |
color: #006bb3; |
| 321 |
} |
| 322 |
|
| 323 |
.ideas .dashicons-megaphone { |
| 324 |
color: #e95645; |
| 325 |
} |
| 326 |
|
| 327 |
.ideas { |
| 328 |
font-size: 14px; |
| 329 |
} |
| 330 |
|
| 331 |
.ideas i { |
| 332 |
margin-right: 14px; |
| 333 |
} |
| 334 |
|
| 335 |
.ideas a { |
| 336 |
font-weight: 600; |
| 337 |
} |
| 338 |
|
| 339 |
.ideas [data-share] { |
| 340 |
color: #0073aa; |
| 341 |
transition-property: border,background,color; |
| 342 |
transition-duration: .05s; |
| 343 |
transition-timing-function: ease-in-out; |
| 344 |
cursor: pointer; |
| 345 |
text-decoration: underline; |
| 346 |
} |
| 347 |
table.wp-list-table { |
| 348 |
table-layout: auto; |
| 349 |
} |
| 350 |
|
| 351 |
|