Spaces:
Running
Running
File size: 1,868 Bytes
9cd6ddb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
@tailwind base;
@tailwind components;
@tailwind utilities;
html, body {
@apply bg-white font-sans scroll-smooth;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button,
input[type='number'] {
-webkit-appearance: none;
margin: 0;
-moz-appearance: textfield !important;
}
/* create infine keyframe animation */
@keyframes infinite-rotation {
from {
transform: rotate(0deg);
}
50% {
transform: rotate(-15deg);
}
to {
transform: rotate(0deg);
}
}
/* play only 3 times the animation */
.clyde-wave {
animation: infinite-rotation 0.5s ease-in-out 3;
}
/* select only last element */
.color__picker_discotools #rbgcp-wrapper > div:nth-child(5) div {
@apply hidden;
}
.color__picker_discotools #rbgcp-wrapper > div:nth-child(5) div:first-of-type {
@apply w-full flex items-center justify-center gap-3 !important;
}
.color__picker_discotools #rbgcp-wrapper > div:nth-child(5) div:first-of-type input {
@apply bg-dark-600 border-none py-2 text-base text-dark-200 !important;
}
.color__picker_discotools--gradient #rbgcp-wrapper > div:nth-child(6) div {
@apply hidden;
}
.color__picker_discotools--gradient #rbgcp-wrapper > div:nth-child(6) div:first-of-type {
@apply w-full flex items-center justify-center gap-3 !important;
}
.color__picker_discotools--gradient #rbgcp-wrapper > div:nth-child(6) div:first-of-type input {
@apply bg-dark-600 border-none py-2 text-base text-dark-200 !important;
}
.color__picker.without-gradients #rbgcp-wrapper > div:nth-child(2) {
@apply hidden;
}
.color__picker.without-gradients #rbgcp-wrapper > div:nth-child(1) {
@apply mb-3;
}
/* write media screen mobile */
@media (max-width: 950px) {
.color__picker_discotools {
@apply w-full !important;
}
.color__picker_discotools canvas {
@apply w-full !important;
}
} |