2023-05-12 15:39:07 +02:00
|
|
|
@tailwind base;
|
2023-03-17 15:33:48 +01:00
|
|
|
@tailwind components;
|
2023-04-14 21:09:38 +02:00
|
|
|
@tailwind utilities;
|
2023-05-03 14:36:53 +02:00
|
|
|
|
2023-05-26 15:19:14 +02:00
|
|
|
html {
|
2023-06-16 10:32:29 +02:00
|
|
|
@apply text-neutral-400;
|
2023-05-26 15:19:14 +02:00
|
|
|
}
|
2023-05-03 14:36:53 +02:00
|
|
|
body {
|
2023-07-05 21:26:21 +02:00
|
|
|
@apply text-sm antialiased scrollbar;
|
2023-05-25 21:23:03 +02:00
|
|
|
}
|
2023-07-13 13:16:24 +02:00
|
|
|
button[isError] {
|
2023-07-26 13:23:47 +02:00
|
|
|
@apply bg-red-600 hover:bg-red-700;
|
2023-07-13 13:16:24 +02:00
|
|
|
}
|
|
|
|
.scrollbar {
|
|
|
|
@apply scrollbar-thumb-coollabs-100 scrollbar-track-coolgray-200 scrollbar-w-2;
|
|
|
|
}
|
2023-06-16 10:32:29 +02:00
|
|
|
.main {
|
2023-07-27 16:22:13 +02:00
|
|
|
@apply pt-4 pl-24 pr-10 mx-auto;
|
2023-05-18 13:26:35 +02:00
|
|
|
}
|
2023-06-06 00:18:48 +02:00
|
|
|
.label-text,
|
|
|
|
label {
|
2023-06-16 12:35:40 +02:00
|
|
|
@apply text-neutral-400;
|
2023-05-22 11:21:03 +02:00
|
|
|
}
|
2023-07-26 13:23:47 +02:00
|
|
|
.navbar-main {
|
|
|
|
@apply flex items-end gap-6 py-2 border-b-2 border-solid border-coolgray-200;
|
|
|
|
}
|
2023-05-17 15:46:20 +02:00
|
|
|
|
2023-06-02 12:34:45 +02:00
|
|
|
.loading {
|
|
|
|
@apply w-4 text-warning;
|
|
|
|
}
|
2023-05-16 21:49:29 +02:00
|
|
|
h1 {
|
2023-06-02 12:34:45 +02:00
|
|
|
@apply text-3xl font-bold text-white;
|
2023-05-16 21:49:29 +02:00
|
|
|
}
|
|
|
|
h2 {
|
2023-06-02 12:34:45 +02:00
|
|
|
@apply text-2xl font-bold text-white;
|
2023-05-16 21:49:29 +02:00
|
|
|
}
|
|
|
|
h3 {
|
2023-06-02 12:34:45 +02:00
|
|
|
@apply text-xl font-bold text-white;
|
2023-05-16 21:49:29 +02:00
|
|
|
}
|
2023-06-01 12:15:33 +02:00
|
|
|
h4 {
|
2023-06-02 12:34:45 +02:00
|
|
|
@apply text-base font-bold text-white;
|
2023-06-01 12:15:33 +02:00
|
|
|
}
|
2023-05-18 13:26:35 +02:00
|
|
|
a {
|
2023-06-16 12:35:40 +02:00
|
|
|
@apply text-neutral-400 hover:text-white link link-hover hover:bg-transparent;
|
2023-05-16 21:49:29 +02:00
|
|
|
}
|
2023-06-07 10:33:45 +02:00
|
|
|
.kbd-custom {
|
2023-07-05 21:26:21 +02:00
|
|
|
@apply px-2 text-xs border border-dashed rounded border-neutral-700 text-warning;
|
2023-06-07 10:33:45 +02:00
|
|
|
}
|
2023-05-22 15:47:40 +02:00
|
|
|
.icon {
|
|
|
|
@apply w-6 h-6;
|
|
|
|
}
|
|
|
|
.icon:hover {
|
|
|
|
@apply text-white;
|
|
|
|
}
|
2023-05-16 21:49:29 +02:00
|
|
|
.box {
|
2023-07-05 21:26:21 +02:00
|
|
|
@apply flex items-center justify-center p-2 transition-colors rounded min-h-12 bg-coolgray-200 hover:bg-coollabs-100 hover:text-white hover:no-underline;
|
2023-05-03 14:36:53 +02:00
|
|
|
}
|
2023-05-16 21:49:29 +02:00
|
|
|
|
2023-05-25 15:47:27 +02:00
|
|
|
.lds-heart {
|
2023-06-06 00:18:48 +02:00
|
|
|
animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
|
2023-05-25 15:47:27 +02:00
|
|
|
}
|
|
|
|
@keyframes lds-heart {
|
2023-06-06 00:18:48 +02:00
|
|
|
0% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
5% {
|
|
|
|
transform: scale(1.2);
|
|
|
|
}
|
|
|
|
39% {
|
|
|
|
transform: scale(0.85);
|
|
|
|
}
|
|
|
|
45% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
transform: scale(0.95);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scale(0.9);
|
|
|
|
}
|
2023-05-25 15:47:27 +02:00
|
|
|
}
|
|
|
|
.bg-coollabs-gradient {
|
2023-06-29 17:16:50 +02:00
|
|
|
@apply text-transparent text-white bg-gradient-to-r from-purple-500 via-pink-500 to-red-500;
|
2023-05-30 15:52:17 +02:00
|
|
|
}
|
2023-05-31 09:22:08 +02:00
|
|
|
.text-helper {
|
2023-06-06 00:18:48 +02:00
|
|
|
@apply inline-block font-bold text-warning;
|
|
|
|
}
|
2023-06-12 21:12:07 +02:00
|
|
|
table {
|
|
|
|
@apply min-w-full divide-y divide-coolgray-200;
|
|
|
|
}
|
|
|
|
thead {
|
2023-06-16 12:35:40 +02:00
|
|
|
@apply uppercase;
|
2023-06-12 21:12:07 +02:00
|
|
|
}
|
|
|
|
tbody {
|
|
|
|
@apply divide-y divide-coolgray-200;
|
|
|
|
}
|
|
|
|
tr {
|
2023-06-16 12:35:40 +02:00
|
|
|
@apply text-neutral-400;
|
2023-06-12 21:12:07 +02:00
|
|
|
}
|
|
|
|
tr th {
|
|
|
|
@apply px-3 py-3.5 text-left text-white;
|
|
|
|
}
|
|
|
|
tr th:first-child {
|
|
|
|
@apply py-3.5 pl-4 pr-3 sm:pl-6;
|
|
|
|
}
|
|
|
|
tr td {
|
|
|
|
@apply px-3 py-4 whitespace-nowrap;
|
|
|
|
}
|
|
|
|
tr td:first-child {
|
2023-07-05 21:26:21 +02:00
|
|
|
@apply pl-4 pr-3 font-bold sm:pl-6;
|
2023-06-12 21:12:07 +02:00
|
|
|
}
|
2023-07-27 16:22:13 +02:00
|
|
|
|
|
|
|
.buyme {
|
|
|
|
@apply block px-3 py-2 mt-10 text-sm font-semibold leading-6 text-center text-white rounded-md shadow-sm bg-coolgray-200 hover:bg-coolgray-300 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-coolgray-200;
|
|
|
|
}
|