doordesk-js/doordesk/style/tailwind.css

78 lines
1 KiB
CSS
Raw Normal View History

2023-07-02 04:52:35 -04:00
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
2024-01-19 18:25:01 -05:00
@apply bg-gradient-to-br from-zinc-900 to-zinc-950 bg-fixed;
@apply w-screen h-screen;
@apply text-orange-50 antialiased font-mono tracking-tighter;
2023-07-10 20:59:52 -04:00
}
a[aria-current="page"] {
2024-01-19 18:25:01 -05:00
border-bottom: 2px solid #de0002;
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
2023-07-02 04:52:35 -04:00
}
2024-01-19 18:25:01 -05:00
/* for innerHTML articles */
2023-07-02 04:52:35 -04:00
article p {
2024-01-19 18:25:01 -05:00
@apply mt-5 indent-4;
2023-07-02 04:52:35 -04:00
}
article h3 {
2024-01-19 20:13:26 -05:00
@apply mt-8 text-2xl text-orange-600;
2023-07-02 04:52:35 -04:00
}
2024-01-19 18:25:01 -05:00
article a {
@apply text-orange-300 hover:underline;
2023-07-02 04:52:35 -04:00
}
2024-01-19 18:25:01 -05:00
article h3 > a {
2024-01-19 20:13:26 -05:00
@apply text-orange-600;
2023-07-02 04:52:35 -04:00
}
2024-01-19 18:25:01 -05:00
article ul,
article ol {
@apply mt-5 list-inside;
2023-07-02 04:52:35 -04:00
}
article ul {
2024-01-19 18:25:01 -05:00
@apply list-disc;
2023-07-02 04:52:35 -04:00
}
article ol {
2024-01-19 18:25:01 -05:00
@apply list-decimal;
2023-07-02 04:52:35 -04:00
}
2024-01-19 20:13:26 -05:00
.hh4 {
@apply text-orange-600;
}
.hh3 {
@apply text-blue-500;
}
.hh13 {
@apply text-orange-800;
}
.hh10 {
@apply text-slate-500;
}
.hh5 {
@apply text-orange-300;
}
/* dunno what this is yet */
.hh18 {
color: red;
}
.code-block {
@apply bg-black bg-opacity-40 p-3 rounded-lg shadow-lg shadow-black;
}
.code-block-inner {
@apply p-2;
}