mirrormanager-rocky/templates/rocky/rocky.css

77 lines
1.4 KiB
CSS
Raw Permalink Normal View History

2024-08-29 23:13:29 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
main {
display: flex;
flex-direction: column;
flex-grow: 1;
}
/* Prose */
.prose code,
.prose strong {
2024-08-30 20:46:43 +00:00
@apply dark:text-gray-300;
2024-08-29 23:13:29 +00:00
}
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
2024-08-30 20:46:43 +00:00
@apply dark:text-white;
2024-08-29 23:13:29 +00:00
}
.prose a {
2024-08-30 20:46:43 +00:00
@apply text-green-600;
2024-08-29 23:13:29 +00:00
}
.prose blockquote {
2024-08-30 20:46:43 +00:00
@apply dark:text-white;
2024-08-29 23:13:29 +00:00
}
.prose img {
2024-08-30 20:46:43 +00:00
@apply rounded-md;
2024-08-29 23:13:29 +00:00
}
2024-08-30 20:46:43 +00:00
[type="text"],
[type="email"],
[type="url"],
[type="password"],
[type="number"],
[type="date"],
[type="datetime-local"],
[type="month"],
[type="search"],
[type="tel"],
[type="time"],
[type="week"],
[multiple],
textarea,
select {
@apply rounded-md bg-gray-100 dark:bg-gray-700
2024-08-29 23:13:29 +00:00
dark:border-gray-600 border-gray-300 border-2
py-2 px-3
focus:outline-none focus:ring focus:ring-2 focus:border-green-600 focus:ring-green-500
transition duration-300 ease-in-out;
}
.form-group label {
2024-08-30 20:46:43 +00:00
@apply text-sm font-medium mb-2;
2024-08-29 23:13:29 +00:00
}
.form-group .check-box input {
2024-08-30 20:46:43 +00:00
@apply rounded-md bg-gray-100 dark:bg-gray-700
2024-08-29 23:13:29 +00:00
dark:border-gray-600 border-gray-300 border-2
p-1 checked:bg-green-600 checked:border-transparent
focus:outline-none focus:ring focus:ring-1 focus:border-green-600 focus:ring-green-500
transition duration-300 ease-in-out;
}
.form-group .check-box label {
2024-08-30 20:46:43 +00:00
@apply mb-0 ml-2;
}