mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-01 10:48:53 +00:00
90 lines
1.8 KiB
CSS
90 lines
1.8 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,400;0,500;0,700;1,400&display=swap');
|
|
|
|
@import "tailwindcss" source(none);
|
|
@source "../views";
|
|
@source "../js";
|
|
|
|
@custom-variant dark (&:where(.dark, .dark *));
|
|
|
|
@layer base {
|
|
.forum {
|
|
font-family: "Source Sans 3", sans-serif;
|
|
font-optical-sizing: auto;
|
|
font-size: 18px;
|
|
@apply text-slate-900;
|
|
}
|
|
|
|
.breadcrumbs ol li {
|
|
display: inline-block;
|
|
}
|
|
|
|
.breadcrumbs ol li + li {
|
|
margin-left: .5rem;
|
|
}
|
|
|
|
.breadcrumbs ol li + li::before {
|
|
float: left;
|
|
padding-right: .5rem;
|
|
color: #6c757d;
|
|
content: "/";
|
|
}
|
|
|
|
.forum .clr-field button {
|
|
@apply w-6 h-6 mr-2 rounded-full;
|
|
}
|
|
|
|
.forum .nested-sort .ns-targeted {
|
|
@apply rounded-md border-green-500 outline outline-green-500;
|
|
}
|
|
|
|
.bg-category {
|
|
background-color: var(--category-light);
|
|
}
|
|
|
|
.text-category {
|
|
color: var(--category-light);
|
|
}
|
|
|
|
div, p {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
h1 {
|
|
@apply text-4xl my-6;
|
|
}
|
|
|
|
h2 {
|
|
@apply text-2xl;
|
|
}
|
|
|
|
h3 {
|
|
@apply text-xl;
|
|
}
|
|
|
|
a:not(.link-button):not(.group-button):not(.text-category) {
|
|
@apply text-slate-600 hover:text-slate-900;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.forum {
|
|
color: rgb(148 163 184); /* slate-400 */
|
|
}
|
|
|
|
.bg-category {
|
|
background-color: var(--category-dark);
|
|
}
|
|
|
|
.text-category {
|
|
color: var(--category-dark);
|
|
}
|
|
|
|
a:not(.link-button):not(.group-button):not(.text-category) {
|
|
color: rgb(203 213 225); /* slate-300 */
|
|
}
|
|
|
|
a:not(.link-button):not(.group-button):not(.text-category):hover {
|
|
color: rgb(255 255 255); /* white */
|
|
}
|
|
}
|
|
}
|