2024-02-10 11:59:58 +00:00
|
|
|
.feather {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
stroke: currentColor;
|
|
|
|
stroke-width: 2;
|
|
|
|
stroke-linecap: round;
|
|
|
|
stroke-linejoin: round;
|
|
|
|
fill: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
2024-02-23 13:56:00 +00:00
|
|
|
.link,
|
|
|
|
p > a {
|
|
|
|
@apply font-medium text-blue-700 hover:underline;
|
|
|
|
}
|
|
|
|
|
2024-02-23 14:16:51 +00:00
|
|
|
code {
|
|
|
|
@apply font-mono text-sm bg-gray-100 rounded-lg p-1;
|
|
|
|
}
|
|
|
|
|
2024-02-13 21:39:34 +00:00
|
|
|
.navbar {
|
2024-02-15 22:47:56 +00:00
|
|
|
@apply justify-center flex flex-wrap space-x-2 gap-2 mt-10;
|
2024-02-10 11:59:58 +00:00
|
|
|
}
|
2024-02-13 21:39:34 +00:00
|
|
|
.navbar a {
|
|
|
|
@apply font-bold py-2 px-4 rounded-lg;
|
|
|
|
}
|
|
|
|
.navbar a:hover {
|
2024-02-10 11:59:58 +00:00
|
|
|
@apply bg-gray-200 shadow-inner;
|
|
|
|
}
|
2024-02-13 21:39:34 +00:00
|
|
|
.navbar a:focus {
|
|
|
|
@apply outline-none ring-2 ring-blue-700 text-blue-700;
|
|
|
|
}
|
|
|
|
.navbar a.active {
|
2024-02-10 11:59:58 +00:00
|
|
|
@apply bg-gray-300 text-black shadow;
|
|
|
|
}
|
2024-02-13 21:39:34 +00:00
|
|
|
.navbar a.active:hover {
|
2024-02-10 11:59:58 +00:00
|
|
|
@apply shadow;
|
|
|
|
}
|
2024-02-12 10:22:14 +00:00
|
|
|
|
|
|
|
.sidebar {
|
2024-02-15 22:47:56 +00:00
|
|
|
@apply flex flex-row flex-wrap justify-center lg:flex-col lg:w-48 gap-2 h-fit text-sm font-medium text-gray-900;
|
2024-02-12 10:22:14 +00:00
|
|
|
}
|
2024-02-13 21:39:34 +00:00
|
|
|
.sidebar a {
|
|
|
|
@apply w-full block rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-700 focus:text-blue-700;
|
2024-02-12 10:22:14 +00:00
|
|
|
}
|
2024-02-13 21:39:34 +00:00
|
|
|
.sidebar a:focus {
|
|
|
|
@apply outline-none ring-2 ring-blue-700 text-blue-700;
|
2024-02-12 10:22:14 +00:00
|
|
|
}
|
2024-02-13 21:39:34 +00:00
|
|
|
.sidebar a:hover {
|
|
|
|
@apply shadow-inner bg-gray-200 text-blue-700;
|
2024-02-12 10:22:14 +00:00
|
|
|
}
|
|
|
|
.sidebar a.active {
|
|
|
|
@apply bg-blue-700 text-white;
|
|
|
|
}
|
2024-02-12 13:20:38 +00:00
|
|
|
|
2024-02-24 11:57:53 +00:00
|
|
|
.monitors {
|
2024-02-15 17:43:35 +00:00
|
|
|
@apply grid justify-items-stretch justify-stretch items-center mt-20 bg-white shadow-md p-5 rounded-lg;
|
2024-02-12 13:20:38 +00:00
|
|
|
}
|
2024-02-24 11:57:53 +00:00
|
|
|
.monitors > div:not(:last-child) {
|
2024-02-12 13:20:38 +00:00
|
|
|
@apply mb-3;
|
|
|
|
}
|
2024-02-24 11:57:53 +00:00
|
|
|
.monitors .time-range > a {
|
2024-02-22 16:29:17 +00:00
|
|
|
@apply font-medium text-sm px-2.5 py-1;
|
|
|
|
@apply text-black bg-gray-100 hover:bg-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-300;
|
|
|
|
}
|
2024-02-24 11:57:53 +00:00
|
|
|
.monitors .time-range > a.active {
|
2024-02-22 16:29:17 +00:00
|
|
|
@apply text-white bg-blue-700 hover:bg-blue-800;
|
|
|
|
}
|
2024-02-24 11:57:53 +00:00
|
|
|
.monitors .time-range > a:first-child {
|
2024-02-22 16:29:17 +00:00
|
|
|
@apply rounded-s-lg;
|
|
|
|
}
|
2024-02-24 11:57:53 +00:00
|
|
|
.monitors .time-range > a:last-child {
|
2024-02-22 16:29:17 +00:00
|
|
|
@apply rounded-e-lg;
|
|
|
|
}
|
2024-02-23 11:18:02 +00:00
|
|
|
|
|
|
|
.settings {
|
|
|
|
@apply grid grid-cols-1 gap-5 grid-rows-[min-content] h-fit;
|
|
|
|
}
|
|
|
|
.settings section {
|
|
|
|
@apply relative overflow-x-auto shadow-md sm:rounded-lg text-gray-500 bg-white;
|
|
|
|
}
|
2024-02-24 21:07:49 +00:00
|
|
|
|
2024-02-23 11:18:02 +00:00
|
|
|
.settings section h2 {
|
2024-02-23 13:42:24 +00:00
|
|
|
@apply flex flex-col text-lg font-semibold text-gray-900;
|
2024-02-23 11:18:02 +00:00
|
|
|
}
|
|
|
|
.settings section h2 span {
|
|
|
|
@apply text-sm font-medium text-gray-500;
|
|
|
|
}
|
2024-02-24 21:07:49 +00:00
|
|
|
|
2024-02-23 11:18:02 +00:00
|
|
|
.settings section form {
|
2024-02-23 13:42:24 +00:00
|
|
|
@apply grid gap-4 grid-cols-1 sm:grid-cols-[2fr_1fr];
|
2024-02-23 11:18:02 +00:00
|
|
|
}
|
|
|
|
.settings section form input {
|
|
|
|
@apply h-min bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5;
|
|
|
|
}
|
|
|
|
.settings section form label {
|
2024-02-23 13:42:24 +00:00
|
|
|
@apply sm:col-span-2 block text-sm font-medium text-gray-900;
|
2024-02-23 11:18:02 +00:00
|
|
|
}
|
|
|
|
.settings section form p {
|
|
|
|
@apply text-sm font-normal text-gray-500;
|
|
|
|
}
|
2024-02-23 13:42:24 +00:00
|
|
|
.settings section form button[type="submit"] {
|
|
|
|
@apply text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center;
|
|
|
|
@apply sm:col-span-2;
|
|
|
|
}
|
2024-02-24 21:07:49 +00:00
|
|
|
|
|
|
|
.settings section table thead {
|
|
|
|
@apply text-xs text-gray-700 uppercase bg-gray-50;
|
|
|
|
}
|
|
|
|
.settings section table thead th {
|
|
|
|
@apply px-6 py-3 text-center;
|
|
|
|
}
|
|
|
|
.settings section table tbody th {
|
|
|
|
@apply px-6 py-4 font-medium text-gray-900 whitespace-nowrap text-center;
|
|
|
|
}
|
|
|
|
.settings section table tbody tr {
|
|
|
|
@apply px-6 py-4 text-center;
|
|
|
|
}
|