2025-12-01 01:14:08 +01:00
|
|
|
@import "tailwindcss";
|
2025-12-02 01:02:09 +01:00
|
|
|
@import "tailwindcss/utilities";
|
|
|
|
|
|
2025-12-15 19:42:07 +01:00
|
|
|
@import '@ui/res/styles/theme.css';
|
|
|
|
|
@import '@ui/res/styles/forms.css';
|
|
|
|
|
@import '@ui/res/styles/fonts.css';
|
|
|
|
|
@import '@ui/res/styles/buttons.css';
|
2025-12-10 22:10:40 +01:00
|
|
|
|
2025-12-29 00:21:03 +01:00
|
|
|
@import '@ui/res/styles/player-menu.css';
|
|
|
|
|
|
|
|
|
|
|
2025-12-02 01:02:09 +01:00
|
|
|
|
|
|
|
|
html, body {
|
2025-12-02 01:03:54 +01:00
|
|
|
@apply bg-stone-950 text-stone-300;
|
2025-12-02 01:02:09 +01:00
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 999px) {
|
|
|
|
|
html, body {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
2025-12-10 22:10:40 +01:00
|
|
|
.mdi svg {
|
|
|
|
|
transform: scale(0.75)
|
|
|
|
|
}
|
2025-12-02 01:02:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
|
body {
|
|
|
|
|
@apply font-sans text-stone-300;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
|
@apply font-mono;
|
|
|
|
|
}
|
2025-12-03 03:14:15 +01:00
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
@apply text-[1.75em];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
|
@apply text-primary-300 text-[1.25em] mt-4 border-b-1 border-b-stone-700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
2025-12-16 22:57:19 +01:00
|
|
|
@apply text-primary-400 cursor-pointer;
|
2025-12-03 03:14:15 +01:00
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
@apply text-primary-300;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
@apply mt-1 mb-2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p, li {
|
|
|
|
|
@apply leading-tight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
@apply bg-stone-900/50 px-4 py-2 mt-1 mb-2;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
@apply ml-4 list-disc marker:text-primary-400 mt-1 mb-2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
small, strike {
|
|
|
|
|
@apply opacity-50;
|
|
|
|
|
}
|
2025-12-10 22:10:40 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Site support levels */
|
|
|
|
|
.site-support-level {
|
|
|
|
|
&.official {
|
|
|
|
|
@apply text-primary-400;
|
|
|
|
|
}
|
|
|
|
|
&.community {
|
|
|
|
|
@apply text-indigo-600;
|
|
|
|
|
}
|
|
|
|
|
&.officially-disabled {
|
|
|
|
|
@apply text-red-600;
|
|
|
|
|
}
|
|
|
|
|
&.no-support {
|
|
|
|
|
@apply text-slate-600;
|
|
|
|
|
}
|
|
|
|
|
&.user-added {
|
|
|
|
|
@apply text-cyan-700;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* END site support levels */
|
|
|
|
|
|
2025-12-01 01:03:12 +01:00
|
|
|
}
|