2023-04-14 19:09:38 +00:00
|
|
|
/* @tailwind base; */
|
2023-03-17 14:33:48 +00:00
|
|
|
@tailwind components;
|
2023-04-14 19:09:38 +00:00
|
|
|
@tailwind utilities;
|
2023-05-03 12:36:53 +00:00
|
|
|
|
|
|
|
body {
|
|
|
|
@apply bg-neutral-900 text-white font-sans;
|
|
|
|
}
|
|
|
|
a, a:visited {
|
|
|
|
@apply text-neutral-300 hover:text-purple-500;
|
|
|
|
}
|
2023-05-04 08:45:09 +00:00
|
|
|
input, textarea {
|
|
|
|
@apply border-none p-2 bg-neutral-800 text-white disabled:text-neutral-600 read-only:text-neutral-600 read-only:select-none
|
2023-05-03 12:36:53 +00:00
|
|
|
}
|
2023-05-04 08:45:09 +00:00
|
|
|
select {
|
|
|
|
@apply border-none p-2 bg-neutral-800 text-white disabled:text-neutral-600 read-only:select-none
|
|
|
|
}
|
|
|
|
|
2023-05-03 12:36:53 +00:00
|
|
|
button {
|
2023-05-03 12:40:58 +00:00
|
|
|
@apply border-none px-2 p-1 cursor-pointer;
|
2023-05-03 12:36:53 +00:00
|
|
|
}
|
2023-05-12 10:22:41 +00:00
|
|
|
.main-menu {
|
|
|
|
@apply relative float-left ;
|
2023-05-12 09:17:56 +00:00
|
|
|
}
|
2023-05-12 10:22:41 +00:00
|
|
|
.main-menu:after {
|
2023-05-12 09:17:56 +00:00
|
|
|
content: '/';
|
|
|
|
@apply absolute right-0 top-0 text-neutral-400 px-2 pt-1;
|
|
|
|
}
|
2023-05-12 10:22:41 +00:00
|
|
|
.magic-input {
|
|
|
|
@apply w-96 rounded shadow outline-none focus:bg-neutral-700;
|
|
|
|
}
|
|
|
|
.magic-items {
|
|
|
|
@apply text-xs absolute top-11 w-[25rem] bg-neutral-800;
|
|
|
|
}
|
|
|
|
.magic-item {
|
|
|
|
@apply m-2 py-2 pl-4 cursor-pointer hover:bg-neutral-700 text-neutral-300 hover:text-white;
|
|
|
|
}
|
|
|
|
.magic-item-focused {
|
|
|
|
@apply bg-neutral-700 text-white;
|
|
|
|
}
|