| 1 |
.flywp-settings *, |
| 2 |
.flywp-settings ::before, |
| 3 |
.flywp-settings ::after { |
| 4 |
box-sizing: border-box; |
| 5 |
border-width: 0; |
| 6 |
border-style: solid; |
| 7 |
} |
| 8 |
|
| 9 |
/* @tailwind base; */ |
| 10 |
|
| 11 |
.fw-m-0 { |
| 12 |
margin: 0px; |
| 13 |
} |
| 14 |
|
| 15 |
.fw-mx-auto { |
| 16 |
margin-left: auto; |
| 17 |
margin-right: auto; |
| 18 |
} |
| 19 |
|
| 20 |
.fw-mb-4 { |
| 21 |
margin-bottom: 1rem; |
| 22 |
} |
| 23 |
|
| 24 |
.fw-mb-6 { |
| 25 |
margin-bottom: 1.5rem; |
| 26 |
} |
| 27 |
|
| 28 |
.fw-mb-8 { |
| 29 |
margin-bottom: 2rem; |
| 30 |
} |
| 31 |
|
| 32 |
.fw-mr-2 { |
| 33 |
margin-right: 0.5rem; |
| 34 |
} |
| 35 |
|
| 36 |
.fw-mt-0 { |
| 37 |
margin-top: 0px; |
| 38 |
} |
| 39 |
|
| 40 |
.fw-mt-1 { |
| 41 |
margin-top: 0.25rem; |
| 42 |
} |
| 43 |
|
| 44 |
.fw-mt-2 { |
| 45 |
margin-top: 0.5rem; |
| 46 |
} |
| 47 |
|
| 48 |
.fw-mt-5 { |
| 49 |
margin-top: 1.25rem; |
| 50 |
} |
| 51 |
|
| 52 |
.fw-block { |
| 53 |
display: block; |
| 54 |
} |
| 55 |
|
| 56 |
.fw-inline-block { |
| 57 |
display: inline-block; |
| 58 |
} |
| 59 |
|
| 60 |
.fw-flex { |
| 61 |
display: flex; |
| 62 |
} |
| 63 |
|
| 64 |
.fw-hidden { |
| 65 |
display: none; |
| 66 |
} |
| 67 |
|
| 68 |
.fw-h-11 { |
| 69 |
height: 2.75rem; |
| 70 |
} |
| 71 |
|
| 72 |
.fw-w-1\/3 { |
| 73 |
width: 33.333333%; |
| 74 |
} |
| 75 |
|
| 76 |
.fw-w-2\/3 { |
| 77 |
width: 66.666667%; |
| 78 |
} |
| 79 |
|
| 80 |
.fw-w-full { |
| 81 |
width: 100%; |
| 82 |
} |
| 83 |
|
| 84 |
.fw-w-52 { |
| 85 |
width: 13rem; |
| 86 |
} |
| 87 |
|
| 88 |
.fw-max-w-xl { |
| 89 |
max-width: 36rem; |
| 90 |
} |
| 91 |
|
| 92 |
.fw-flex-1 { |
| 93 |
flex: 1 1 0%; |
| 94 |
} |
| 95 |
|
| 96 |
.fw-items-center { |
| 97 |
align-items: center; |
| 98 |
} |
| 99 |
|
| 100 |
.fw-justify-end { |
| 101 |
justify-content: flex-end; |
| 102 |
} |
| 103 |
|
| 104 |
.fw-justify-between { |
| 105 |
justify-content: space-between; |
| 106 |
} |
| 107 |
|
| 108 |
.fw-gap-3 { |
| 109 |
gap: 0.75rem; |
| 110 |
} |
| 111 |
|
| 112 |
.fw-rounded { |
| 113 |
border-radius: 0.25rem; |
| 114 |
} |
| 115 |
|
| 116 |
.fw-rounded-bl { |
| 117 |
border-bottom-left-radius: 0.25rem; |
| 118 |
} |
| 119 |
|
| 120 |
.fw-rounded-br { |
| 121 |
border-bottom-right-radius: 0.25rem; |
| 122 |
} |
| 123 |
|
| 124 |
.fw-border-b { |
| 125 |
border-bottom-width: 1px; |
| 126 |
} |
| 127 |
|
| 128 |
.fw-border-t { |
| 129 |
border-top-width: 1px; |
| 130 |
} |
| 131 |
|
| 132 |
.fw-border-solid { |
| 133 |
border-style: solid; |
| 134 |
} |
| 135 |
|
| 136 |
.fw-border-gray-200 { |
| 137 |
--tw-border-opacity: 1; |
| 138 |
border-color: rgb(229 231 235 / var(--tw-border-opacity)); |
| 139 |
} |
| 140 |
|
| 141 |
.fw-bg-gray-100 { |
| 142 |
--tw-bg-opacity: 1; |
| 143 |
background-color: rgb(243 244 246 / var(--tw-bg-opacity)); |
| 144 |
} |
| 145 |
|
| 146 |
.fw-bg-green-200 { |
| 147 |
--tw-bg-opacity: 1; |
| 148 |
background-color: rgb(187 247 208 / var(--tw-bg-opacity)); |
| 149 |
} |
| 150 |
|
| 151 |
.fw-bg-white { |
| 152 |
--tw-bg-opacity: 1; |
| 153 |
background-color: rgb(255 255 255 / var(--tw-bg-opacity)); |
| 154 |
} |
| 155 |
|
| 156 |
.fw-p-4 { |
| 157 |
padding: 1rem; |
| 158 |
} |
| 159 |
|
| 160 |
.fw-px-4 { |
| 161 |
padding-left: 1rem; |
| 162 |
padding-right: 1rem; |
| 163 |
} |
| 164 |
|
| 165 |
.fw-py-1 { |
| 166 |
padding-top: 0.25rem; |
| 167 |
padding-bottom: 0.25rem; |
| 168 |
} |
| 169 |
|
| 170 |
.fw-py-2 { |
| 171 |
padding-top: 0.5rem; |
| 172 |
padding-bottom: 0.5rem; |
| 173 |
} |
| 174 |
|
| 175 |
.fw-py-3 { |
| 176 |
padding-top: 0.75rem; |
| 177 |
padding-bottom: 0.75rem; |
| 178 |
} |
| 179 |
|
| 180 |
.fw-py-4 { |
| 181 |
padding-top: 1rem; |
| 182 |
padding-bottom: 1rem; |
| 183 |
} |
| 184 |
|
| 185 |
.fw-pb-3 { |
| 186 |
padding-bottom: 0.75rem; |
| 187 |
} |
| 188 |
|
| 189 |
.fw-pt-4 { |
| 190 |
padding-top: 1rem; |
| 191 |
} |
| 192 |
|
| 193 |
.fw-text-center { |
| 194 |
text-align: center; |
| 195 |
} |
| 196 |
|
| 197 |
.fw-text-right { |
| 198 |
text-align: right; |
| 199 |
} |
| 200 |
|
| 201 |
.fw-text-2xl { |
| 202 |
font-size: 1.5rem; |
| 203 |
line-height: 2rem; |
| 204 |
} |
| 205 |
|
| 206 |
.fw-text-lg { |
| 207 |
font-size: 1.125rem; |
| 208 |
line-height: 1.75rem; |
| 209 |
} |
| 210 |
|
| 211 |
.fw-text-sm { |
| 212 |
font-size: 0.875rem; |
| 213 |
line-height: 1.25rem; |
| 214 |
} |
| 215 |
|
| 216 |
.fw-font-medium { |
| 217 |
font-weight: 500; |
| 218 |
} |
| 219 |
|
| 220 |
.fw-font-semibold { |
| 221 |
font-weight: 600; |
| 222 |
} |
| 223 |
|
| 224 |
.fw-leading-6 { |
| 225 |
line-height: 1.5rem; |
| 226 |
} |
| 227 |
|
| 228 |
.fw-text-gray-400 { |
| 229 |
--tw-text-opacity: 1; |
| 230 |
color: rgb(156 163 175 / var(--tw-text-opacity)); |
| 231 |
} |
| 232 |
|
| 233 |
.fw-text-gray-500 { |
| 234 |
--tw-text-opacity: 1; |
| 235 |
color: rgb(107 114 128 / var(--tw-text-opacity)); |
| 236 |
} |
| 237 |
|
| 238 |
.fw-text-gray-900 { |
| 239 |
--tw-text-opacity: 1; |
| 240 |
color: rgb(17 24 39 / var(--tw-text-opacity)); |
| 241 |
} |
| 242 |
|
| 243 |
.fw-text-green-600 { |
| 244 |
--tw-text-opacity: 1; |
| 245 |
color: rgb(22 163 74 / var(--tw-text-opacity)); |
| 246 |
} |
| 247 |
|
| 248 |
.fw-text-green-800 { |
| 249 |
--tw-text-opacity: 1; |
| 250 |
color: rgb(22 101 52 / var(--tw-text-opacity)); |
| 251 |
} |
| 252 |
|
| 253 |
.fw-shadow { |
| 254 |
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); |
| 255 |
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); |
| 256 |
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); |
| 257 |
} |
| 258 |
|
| 259 |
body.dashboard_page_flywp #wpcontent { |
| 260 |
padding-left: 0; |
| 261 |
} |
| 262 |
|
| 263 |
@media (min-width: 640px) { |
| 264 |
.sm\:fw-mb-0 { |
| 265 |
margin-bottom: 0px; |
| 266 |
} |
| 267 |
|
| 268 |
.sm\:fw-flex { |
| 269 |
display: flex; |
| 270 |
} |
| 271 |
|
| 272 |
.sm\:fw-w-32 { |
| 273 |
width: 8rem; |
| 274 |
} |
| 275 |
|
| 276 |
.sm\:fw-w-1\/3 { |
| 277 |
width: 33.333333%; |
| 278 |
} |
| 279 |
|
| 280 |
.sm\:fw-w-2\/3 { |
| 281 |
width: 66.666667%; |
| 282 |
} |
| 283 |
|
| 284 |
.sm\:fw-flex-none { |
| 285 |
flex: none; |
| 286 |
} |
| 287 |
|
| 288 |
.sm\:fw-justify-normal { |
| 289 |
justify-content: normal; |
| 290 |
} |
| 291 |
|
| 292 |
.sm\:fw-px-0 { |
| 293 |
padding-left: 0px; |
| 294 |
padding-right: 0px; |
| 295 |
} |
| 296 |
|
| 297 |
.sm\:fw-pr-6 { |
| 298 |
padding-right: 1.5rem; |
| 299 |
} |
| 300 |
|
| 301 |
.sm\:fw-text-right { |
| 302 |
text-align: right; |
| 303 |
} |
| 304 |
} |
| 305 |
|
| 306 |
@media (min-width: 768px) { |
| 307 |
.md\:fw-flex { |
| 308 |
display: flex; |
| 309 |
} |
| 310 |
|
| 311 |
.md\:fw-w-1\/3 { |
| 312 |
width: 33.333333%; |
| 313 |
} |
| 314 |
|
| 315 |
.md\:fw-w-2\/3 { |
| 316 |
width: 66.666667%; |
| 317 |
} |
| 318 |
|
| 319 |
.md\:fw-text-right { |
| 320 |
text-align: right; |
| 321 |
} |
| 322 |
} |