forge/resources/css/app.css

90 lines
1.5 KiB
CSS
Raw Normal View History

2024-05-13 18:55:34 -04:00
@tailwind base;
@tailwind components;
@tailwind utilities;
[x-cloak] {
display: none;
}
2024-05-17 17:11:54 -04:00
main a:not(.mod-list-component):not(.tab):not([role="menuitem"]) {
2024-06-01 23:04:06 -04:00
@apply underline text-gray-800 hover:text-black dark:text-gray-200 dark:hover:text-white;
}
.badge-version {
@apply bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-100;
&.red {
@apply bg-red-100 dark:bg-red-700 text-red-700 dark:text-red-100;
}
&.green {
@apply bg-green-100 dark:bg-green-700 text-green-700 dark:text-green-100;
}
&.emerald {
@apply bg-emerald-100 dark:bg-emerald-700 text-emerald-700 dark:text-emerald-100;
}
&.lime {
@apply bg-lime-100 dark:bg-lime-700 text-lime-700 dark:text-lime-100;
}
&.yellow {
@apply bg-yellow-100 dark:bg-yellow-700 text-yellow-700 dark:text-yellow-100;
}
2024-05-17 17:11:54 -04:00
}
2024-06-01 23:04:06 -04:00
.user-markdown {
b, strong {
@apply font-bold;
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
i, em {
@apply italic
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
h1, h2, h3, h4, h5, h6 {
@apply font-bold mt-4 mb-2 text-black dark:text-white;
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
h1 {
@apply text-2xl;
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
h2 {
@apply text-xl;
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
h3 {
@apply text-lg;
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
h4 {
@apply text-base;
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
h5 {
@apply text-sm;
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
h6 {
@apply text-xs;
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
p {
@apply my-2 text-gray-800 dark:text-gray-300;
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
ul {
@apply list-disc mb-2;
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
ol {
@apply list-decimal mb-2;
}
2024-06-05 16:31:29 -04:00
2024-06-01 23:04:06 -04:00
li {
@apply my-2 ml-7 text-gray-800 dark:text-gray-300;
}
}