addon-box.js
3 months ago
addons.css
1 month ago
backup-adstxt.js
3 months ago
dashboard.css
3 months ago
index.js
3 months ago
oneclick.css
3 months ago
spinner.css
3 months ago
subscribe.js
3 months ago
welcome.js
3 months ago
dashboard.css
306 lines
| 1 | @import "../partials/tailwind.css"; |
| 2 | |
| 3 | @import "./spinner.css"; |
| 4 | @import "./addons.css"; |
| 5 | @import "../../../node_modules/select2/dist/css/select2.css"; |
| 6 | @import "./oneclick.css"; |
| 7 | |
| 8 | #welcome { |
| 9 | @apply bg-repeat; |
| 10 | |
| 11 | > *, |
| 12 | a { |
| 13 | @apply text-white; |
| 14 | } |
| 15 | |
| 16 | p { |
| 17 | @apply text-justify; |
| 18 | } |
| 19 | |
| 20 | #dismiss-welcome { |
| 21 | @apply absolute flex items-center right-0 top-0 justify-center; |
| 22 | width: 50px; |
| 23 | height: 50px; |
| 24 | |
| 25 | .dashicons { |
| 26 | @apply cursor-pointer; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | > div { |
| 31 | @apply p-6; |
| 32 | } |
| 33 | |
| 34 | @media screen and (min-width: 601px) { |
| 35 | > div { |
| 36 | @apply grid grid-cols-2; |
| 37 | column-gap: 100px; |
| 38 | padding: 50px; |
| 39 | |
| 40 | > div:last-child { |
| 41 | @apply flex items-center; |
| 42 | } |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | #head { |
| 47 | @apply block; |
| 48 | font-size: 1.75rem; |
| 49 | margin: 15px 0 30px 0; |
| 50 | } |
| 51 | |
| 52 | #subhead { |
| 53 | @apply text-base font-medium block m-0 uppercase; |
| 54 | } |
| 55 | |
| 56 | #cta { |
| 57 | margin-top: 50px; |
| 58 | width: 100%; |
| 59 | |
| 60 | a { |
| 61 | padding: 12px 20px; |
| 62 | @apply inline-block no-underline; |
| 63 | } |
| 64 | |
| 65 | &::after { |
| 66 | @apply block content-[""] clear-both; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | #launch-wizard { |
| 71 | border-radius: 5px; |
| 72 | background: #1b193a; |
| 73 | color: #fff; |
| 74 | |
| 75 | &:hover { |
| 76 | transition: ease-in-out 250ms; |
| 77 | background: #000; |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | #first-step { |
| 82 | @apply !underline !pr-0; |
| 83 | text-underline-offset: 0.25rem; |
| 84 | |
| 85 | &::after { |
| 86 | font-family: dashicons, sans-serif; |
| 87 | @apply inline-block ml-1.5 align-middle content-["\f118"]; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | @media screen and (min-width: 1020px) { |
| 92 | #cta { |
| 93 | @apply w-full; |
| 94 | margin-top: 50px; |
| 95 | |
| 96 | > * { |
| 97 | @apply align-middle; |
| 98 | } |
| 99 | |
| 100 | &::after { |
| 101 | @apply block content-[""] clear-both; |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | #launch-wizard { |
| 106 | @apply float-left; |
| 107 | box-shadow: 0 0 20px 0 rgb(242 252 255 / 20%); |
| 108 | } |
| 109 | |
| 110 | #first-step { |
| 111 | @apply float-right; |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | #welcome-thumbnail { |
| 116 | @apply inline-block; |
| 117 | box-shadow: 0 0 20px 0 rgb(27 24 58 / 20%); |
| 118 | |
| 119 | img { |
| 120 | @apply max-w-full; |
| 121 | } |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | #advads-overview { |
| 126 | .inside { |
| 127 | @apply my-0; |
| 128 | padding: 0; |
| 129 | |
| 130 | > div { |
| 131 | padding-left: 12px; |
| 132 | padding-right: 12px; |
| 133 | } |
| 134 | |
| 135 | #advanced-ads-addon-box { |
| 136 | padding-left: 15px; |
| 137 | padding-right: 15px; |
| 138 | } |
| 139 | |
| 140 | > footer { |
| 141 | @apply m-0 p-3 border-t border-t-border; |
| 142 | |
| 143 | a { |
| 144 | @apply p-0 m-0 no-underline; |
| 145 | |
| 146 | &:not(:last-child)::after { |
| 147 | @apply font-light; |
| 148 | content: " | "; |
| 149 | color: #c3c4c7; |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | a.go-pro { |
| 154 | @apply font-semibold; |
| 155 | } |
| 156 | |
| 157 | .dashicons-external { |
| 158 | @apply text-lg; |
| 159 | line-height: normal; |
| 160 | } |
| 161 | |
| 162 | .dashicons-lightbulb { |
| 163 | @apply text-xl leading-none; |
| 164 | color: #0474a2; |
| 165 | } |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | .postbox { |
| 170 | h2 { |
| 171 | @apply text-sm m-0 px-3 py-2; |
| 172 | border-bottom: 1px solid #c3c4c7; |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | .advads-widget-wrapper { |
| 177 | @apply mb-6; |
| 178 | |
| 179 | .section-title { |
| 180 | @apply bg-gray-50/70 px-3 py-2.5 my-3; |
| 181 | @apply !-mx-3; |
| 182 | border: solid #c3c4c7; |
| 183 | border-width: 1px 0; |
| 184 | |
| 185 | h3 { |
| 186 | @apply m-0 font-semibold text-sm; |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | .manual-wrapper { |
| 191 | @apply flex flex-row justify-around mt-3; |
| 192 | |
| 193 | > div { |
| 194 | width: 49%; |
| 195 | } |
| 196 | |
| 197 | .title { |
| 198 | @apply flex flex-col m-0 text-center no-underline font-bold py-2; |
| 199 | |
| 200 | &:hover, |
| 201 | .dashicons { |
| 202 | color: #1b193a; |
| 203 | } |
| 204 | |
| 205 | .dashicons { |
| 206 | @apply text-6xl w-auto h-auto; |
| 207 | color: #0474a2; |
| 208 | |
| 209 | &:hover { |
| 210 | @apply text-inherit; |
| 211 | } |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | .divider { |
| 216 | width: 0.1%; |
| 217 | border: solid #c3c4c7; |
| 218 | border-width: 0 1px 0 0; |
| 219 | } |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | .advads-ad-health-notices { |
| 224 | @apply m-0 mb-3; |
| 225 | |
| 226 | .dashicons-warning { |
| 227 | color: #cc3000; |
| 228 | } |
| 229 | |
| 230 | .dashicons-info { |
| 231 | color: #0474a2; |
| 232 | } |
| 233 | |
| 234 | &-show-hidden { |
| 235 | @apply ml-8 cursor-pointer underline; |
| 236 | color: #0474a2; |
| 237 | } |
| 238 | |
| 239 | li { |
| 240 | @apply flex justify-between items-start gap-2 mb-0; |
| 241 | |
| 242 | &:not(:last-child) { |
| 243 | @apply mb-3; |
| 244 | } |
| 245 | |
| 246 | .text { |
| 247 | flex: 1; |
| 248 | |
| 249 | a { |
| 250 | @apply text-current; |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | > button { |
| 255 | @apply border-none bg-transparent cursor-pointer; |
| 256 | color: #a7aaad; |
| 257 | } |
| 258 | |
| 259 | .date { |
| 260 | @apply italic; |
| 261 | color: #a7aaad; |
| 262 | } |
| 263 | } |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | .advads-ui-switch { |
| 268 | @apply inline-flex relative items-center cursor-pointer; |
| 269 | |
| 270 | &-list { |
| 271 | @apply space-y-4; |
| 272 | } |
| 273 | |
| 274 | input { |
| 275 | @apply sr-only; |
| 276 | |
| 277 | &:checked ~ div { |
| 278 | @apply bg-primary after:left-auto after:right-[2px] after:border-white; |
| 279 | } |
| 280 | |
| 281 | &:disabled ~ div { |
| 282 | @apply after:bg-gray-100 after:border-gray-200; |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | div { |
| 287 | @apply relative w-11 h-6 bg-gray-200 rounded-full border; |
| 288 | |
| 289 | &::after { |
| 290 | @apply content-[""] absolute top-0.5 left-[2px] bg-white border-gray-300 border rounded-full h-5 w-5 transition-all; |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | span { |
| 295 | @apply ml-4; |
| 296 | } |
| 297 | |
| 298 | span.muted { |
| 299 | @apply block text-gray-400 ml-0; |
| 300 | } |
| 301 | |
| 302 | em.muted { |
| 303 | @apply text-gray-400; |
| 304 | } |
| 305 | } |
| 306 |