PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.4.3
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.4.3
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
weforms / assets / less / utility.less

utility.less in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.4.3, at assets/less/utility.less

96 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * UTILITY CSS
3 */
4
5 * {
6 box-sizing: border-box;
7 }
8
9 .weforms-premium {
10 font-weight: 300;
11 margin: 60px;
12 max-width: 1003px;
13 margin: 0 auto;
14 padding-top: 50px;
15 // typography
16 img {
17 max-width: 100%;
18 }
19 h1, h2 {
20 font-weight: 600;
21 }
22 h1 {
23 font-size: 40px;
24 }
25 h2 {
26 font-size: 28px;
27 }
28 h3 {
29 font-size: 20px;
30 }
31 p {
32 font-size: 14px;
33 line-height: 20px;
34 color: #758598;
35 }
36
37 // buttons
38 .wf-btn {
39 font-size: 12px;
40 line-height: 14px;
41 font-weight: 500;
42 display: inline-flex;
43 padding: 13px 18px;
44 text-decoration: none;
45 white-space: nowrap;
46 border-radius: 3px;
47 transition: all .3s ease;
48 &.wf-btn-primary {
49 background: #1A9ED4;
50 color: #fff;
51 }
52 &.wf-btn-default {
53 background: #fff;
54 color: #12CE66;
55 }
56 &.wf-btn-lg {
57 font-size: 15px;
58 line-height: 18px;
59 padding: 15px 28px;
60 letter-spacing: 1.01px;
61 font-weight: 300;
62 }
63 &:hover {
64 box-shadow: 0 7px 18px 0 rgba(0, 0, 0, 0.31);
65 }
66 }
67
68 // common styles
69 .wf-section-wrapper {
70 // display: block;
71 width: 100%;
72 margin-bottom: 80px;
73 .section-header {
74 margin-bottom: 45px;
75 h2 {
76 text-align: center;
77 margin: 0;
78 }
79 }
80 }
81 }
82
83
84 @keyframes play_effect_btn {
85 0% {
86 box-shadow: 0 0 0 20px rgba(199, 245, 236, 0.35), 0 0 0 10px rgba(199, 245, 216, 0.65);
87 }
88 50% {
89 box-shadow: none;
90 }
91 100% {
92 box-shadow: 0 0 0 20px rgba(199, 245, 236, 0.35), 0 0 0 10px rgba(199, 245, 236, 0.65);
93 }
94 }
95
96