| 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 |
|