coolify/resources/css/app.css

79 lines
1.9 KiB
CSS
Raw Normal View History

2023-05-12 15:39:07 +02:00
@tailwind base;
2023-03-17 15:33:48 +01:00
@tailwind components;
@tailwind utilities;
2023-05-03 14:36:53 +02:00
2023-05-18 13:26:35 +02:00
* {
@apply scrollbar-thumb-yellow-400 scrollbar-track-coolgray-200 scrollbar-w-1;
}
html {
@apply h-full min-h-full bg-coolgray-100 ;
}
2023-05-03 14:36:53 +02:00
body {
2023-05-18 13:26:35 +02:00
@apply bg-coolgray-100 text-white min-h-full antialiased;
}
input[type="checkbox"] {
@apply toggle toggle-warning toggle-sm;
2023-05-03 14:36:53 +02:00
}
2023-05-17 15:46:20 +02:00
input {
2023-05-18 13:26:35 +02:00
@apply input input-sm;
2023-05-16 20:47:59 +02:00
}
2023-05-18 13:26:35 +02:00
input[type="text"],[type="number"],[type="email"],[type="password"] {
@apply read-only:opacity-40;
2023-05-17 15:46:20 +02:00
}
2023-05-14 14:43:49 +02:00
textarea {
2023-05-18 13:26:35 +02:00
@apply textarea;
2023-05-17 09:26:50 +02:00
}
2023-05-04 10:45:09 +02:00
select {
2023-05-18 13:26:35 +02:00
@apply select select-sm disabled:opacity-40;
2023-05-04 10:45:09 +02:00
}
2023-05-18 13:26:35 +02:00
button[type="button"] {
@apply btn btn-xs btn-ghost no-animation normal-case text-white;
2023-05-17 15:46:20 +02:00
}
button[type="submit"] {
2023-05-18 13:26:35 +02:00
@apply btn btn-xs no-animation normal-case text-white btn-primary;
}
button[isWarning] {
@apply btn-error text-white;
}
button[isHighlighted] {
@apply btn-primary text-white;
2023-05-16 21:49:29 +02:00
}
h1 {
@apply text-3xl font-bold pb-4;
}
h2 {
2023-05-17 15:46:20 +02:00
@apply text-2xl font-bold pb-4;
2023-05-16 21:49:29 +02:00
}
h3 {
2023-05-18 13:26:35 +02:00
@apply text-xl font-bold py-4;
2023-05-16 21:49:29 +02:00
}
2023-05-18 13:26:35 +02:00
a {
@apply text-neutral-400 hover:text-white text-sm link link-hover hover:bg-transparent;
2023-05-16 21:49:29 +02:00
}
.box {
@apply flex items-center justify-center text-sm rounded cursor-pointer h-14 bg-coolgray-200 hover:bg-coollabs-100 hover:text-white p-2 hover:no-underline;
2023-05-03 14:36:53 +02:00
}
2023-05-16 21:49:29 +02:00
2023-05-12 12:22:41 +02:00
.main-menu {
2023-05-12 15:39:07 +02:00
@apply relative float-left;
2023-05-12 11:17:56 +02:00
}
2023-05-12 12:22:41 +02:00
.main-menu:after {
2023-05-14 14:43:49 +02:00
content: "/";
2023-05-17 15:46:20 +02:00
@apply font-bold absolute right-0 top-0 text-neutral-400 px-2 pt-[0.7rem];
2023-05-12 11:17:56 +02:00
}
2023-05-12 12:22:41 +02:00
.magic-input {
2023-05-17 15:46:20 +02:00
@apply input input-ghost w-96 placeholder:text-neutral-400 text-sm;
2023-05-12 12:22:41 +02:00
}
.magic-items {
2023-05-17 15:46:20 +02:00
@apply absolute top-16 mt-2 w-[24rem] bg-coolgray-200 rounded-xl outline outline-coolgray-500;
2023-05-12 12:22:41 +02:00
}
.magic-item {
2023-05-17 15:46:20 +02:00
@apply text-sm flex items-center gap-4 m-2 py-2 pl-4 cursor-pointer hover:bg-coolgray-500 text-neutral-400 hover:text-white rounded-xl transition-colors hover:shadow;
2023-05-12 12:22:41 +02:00
}
.magic-item-focused {
@apply bg-neutral-700 text-white;
}