| 1 |
@font-face { |
| 2 |
font-family: 'Inter'; |
| 3 |
font-style: normal; |
| 4 |
font-weight: 100 900; |
| 5 |
font-display: swap; |
| 6 |
src: url('../fonts/Inter.woff2') format('woff2'); |
| 7 |
} |
| 8 |
|
| 9 |
#wpwrap, |
| 10 |
#wpcontent, |
| 11 |
.king-addons-settings { |
| 12 |
display: block !important; |
| 13 |
} |
| 14 |
|
| 15 |
.kng-btn-submit-wrap { |
| 16 |
margin-top: 20px; |
| 17 |
text-align: right; |
| 18 |
} |
| 19 |
|
| 20 |
/*noinspection DuplicatedCode*/ |
| 21 |
.kng-btn-submit { |
| 22 |
font-size: 13px; |
| 23 |
font-weight: 400; |
| 24 |
line-height: 2; |
| 25 |
padding: 8px 24px; |
| 26 |
cursor: pointer; |
| 27 |
transition: all 300ms; |
| 28 |
letter-spacing: 1px; |
| 29 |
color: white; |
| 30 |
border: none; |
| 31 |
border-radius: 12px; |
| 32 |
background: linear-gradient(45deg, #E1CBFF, #9B62FF 50%, #5B03FF); |
| 33 |
} |
| 34 |
|
| 35 |
.kng-btn-submit:hover { |
| 36 |
color: black; |
| 37 |
} |
| 38 |
|
| 39 |
hr.king-addons-settings-separator { |
| 40 |
border: none; |
| 41 |
border-top: 1px solid rgb(100 105 112 / 40%); |
| 42 |
} |
| 43 |
|
| 44 |
/*noinspection DuplicatedCode*/ |
| 45 |
.notice { |
| 46 |
display: flex; |
| 47 |
align-items: center; |
| 48 |
flex-flow: row; |
| 49 |
justify-content: center; |
| 50 |
margin: 20px 40px 0 20px; |
| 51 |
padding: 20px !important; |
| 52 |
border: 1px solid rgb(23 200 107 / 30%); |
| 53 |
border-left-width: initial; |
| 54 |
border-radius: 30px; |
| 55 |
outline: none; |
| 56 |
background: #1a1b1b; |
| 57 |
box-shadow: none; |
| 58 |
} |
| 59 |
|
| 60 |
/*noinspection CssNonIntegerLengthInPixels*/ |
| 61 |
.notice p { |
| 62 |
font-size: 18px; |
| 63 |
line-height: 1.5; |
| 64 |
letter-spacing: 0.5px; |
| 65 |
display: inline-block; |
| 66 |
margin: 0; |
| 67 |
padding: 0 0 0 10px; |
| 68 |
background: linear-gradient(107.65deg, #005DBB 17.53%, #17C969 94.64%); |
| 69 |
-webkit-background-clip: text; |
| 70 |
-webkit-text-fill-color: transparent; |
| 71 |
} |
| 72 |
|
| 73 |
.notice-dismiss { |
| 74 |
position: absolute; |
| 75 |
top: unset; |
| 76 |
right: 20px; |
| 77 |
margin: 0; |
| 78 |
padding: 10px; |
| 79 |
cursor: pointer; |
| 80 |
color: white; |
| 81 |
border: none; |
| 82 |
background: 0 0; |
| 83 |
} |
| 84 |
|
| 85 |
/*noinspection DuplicatedCode*/ |
| 86 |
.notice-dismiss:before { |
| 87 |
font: normal 20px / 20px dashicons; |
| 88 |
display: block; |
| 89 |
width: 20px; |
| 90 |
height: 20px; |
| 91 |
content: "\f153"; |
| 92 |
text-align: center; |
| 93 |
color: rgb(23 200 107 / 30%); |
| 94 |
background: 0 0; |
| 95 |
-webkit-font-smoothing: antialiased; |
| 96 |
-moz-osx-font-smoothing: grayscale; |
| 97 |
} |
| 98 |
|
| 99 |
.notice-dismiss:active:before, .notice-dismiss:focus:before, .notice-dismiss:hover:before { |
| 100 |
color: rgb(214 54 56 / 50%); |
| 101 |
} |