AnoPaper/src/index.css

69 lines
1.2 KiB
CSS
Raw Normal View History

2022-10-17 13:50:40 +03:00
@tailwind base;
@tailwind components;
2022-10-17 15:54:46 +03:00
@tailwind utilities;
/* styles for displaying markdown */
@layer base {
.md h1 {
@apply text-6xl;
}
.md h2 {
@apply text-5xl;
}
.md h3 {
@apply text-4xl;
}
.md h4 {
@apply text-3xl;
}
.md h5 {
@apply text-2xl;
}
.md h6 {
@apply text-xl;
}
.md blockquote{
2023-02-09 17:15:34 +03:00
@apply border-l-4 pl-2 rounded-lg ml-4 mt-2 mb-2;
2022-10-17 16:02:23 +03:00
@apply bg-zinc-200 border-zinc-400;
@apply dark:bg-zinc-800 dark:border-zinc-600;
2022-10-17 15:54:46 +03:00
}
.md hr {
2022-10-17 16:02:23 +03:00
@apply mb-4 mt-4 border-2 rounded-lg;
2022-10-17 15:54:46 +03:00
}
.md ul{
2023-02-09 17:15:34 +03:00
@apply list-disc list-inside ml-4;
2022-10-17 15:54:46 +03:00
}
.md li ul {
2023-02-09 17:15:34 +03:00
@apply list-disc list-inside;
2022-10-17 15:54:46 +03:00
}
.md ol{
2023-02-09 17:15:34 +03:00
@apply list-decimal list-inside ml-4;
2022-10-17 15:54:46 +03:00
}
.md li ol{
2023-02-09 17:15:34 +03:00
@apply list-decimal list-inside ml-4;
2022-10-17 15:54:46 +03:00
}
.md code {
@apply p-1;
@apply rounded-lg;
2022-10-17 16:02:23 +03:00
@apply bg-zinc-200 border-zinc-400;
@apply dark:bg-zinc-800 dark:border-zinc-600;
2022-10-17 15:54:46 +03:00
}
.md a {
@apply inline-block bg-transparent text-blue-600;
}
2022-10-17 17:50:44 +03:00
.md img {
2022-10-17 17:59:26 +03:00
@apply w-96 ease-[cubic-bezier(.69,.58,.32,1.69)] hover:scale-105 rounded-2xl hover:drop-shadow-2xl transition duration-500 lg:ml-5;
2022-10-17 17:50:44 +03:00
}
2023-02-09 17:15:34 +03:00
2023-04-01 20:57:46 +03:00
.md p, .math-inline { display: inline-block; }
2022-10-17 15:54:46 +03:00
}