human-anatomy-3d/src/assets/styles/main.css

87 lines
1.1 KiB
CSS
Raw Normal View History

2020-06-20 18:16:50 +00:00
@tailwind base;
a {
2020-10-04 21:50:01 +00:00
@apply text-blue-700;
}
a:hover {
@apply underline;
2020-06-20 18:16:50 +00:00
}
@tailwind components;
2020-10-04 21:50:01 +00:00
2020-06-20 18:16:50 +00:00
@tailwind utilities;
2020-10-05 15:49:01 +00:00
.content {
@apply tracking-wider leading-8 text-xl;
}
.content p {
@apply my-5;
}
.content h1 {
@apply text-5xl font-bold mt-12 mb-5 leading-10;
}
.content h2 {
@apply text-4xl font-bold mt-10 mb-5;
}
.content h3 {
@apply text-3xl font-bold mt-10 mb-5;
}
.content h4 {
@apply text-2xl font-bold mt-10 mb-5;
}
.content h5 {
@apply text-xl font-bold mt-10 mb-5;
}
.content h6 {
@apply text-lg font-bold mt-10 mb-5;
}
.content ul,
.content ol,
.content p {
@apply overflow-auto;
}
.content > div > ul,
.content > div > ol {
@apply my-6;
}
.content ul,
.content ol {
@apply pl-8;
}
.content ul {
@apply list-outside list-disc;
}
.content ol {
@apply list-outside list-decimal;
}
.content pre[class*='language-'] {
@apply my-8;
}
.content table {
@apply whitespace-no-wrap my-8 border-collapse block overflow-auto;
}
.content th,
.content td {
@apply border px-8 py-4;
}
.content th {
@apply bg-gray-100;
}