61 lines
830 B
CSS
61 lines
830 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html {
|
|
/* Disable mobile browser tap background highlight */
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
#toc ul li {
|
|
/* Table of contents styling */
|
|
list-style-type: disc;
|
|
}
|
|
|
|
.image-thumbnail {
|
|
@apply sm:w-1/6 shadow-md;
|
|
}
|
|
|
|
.image-small {
|
|
@apply sm:w-1/3 shadow-md;
|
|
}
|
|
|
|
.image-medium {
|
|
@apply sm:w-1/2 shadow-md;
|
|
}
|
|
|
|
.image-large {
|
|
@apply w-full h-full shadow-md;
|
|
}
|
|
|
|
.image-left {
|
|
@apply sm:float-left mr-5;
|
|
}
|
|
|
|
.image-right {
|
|
@apply sm:float-right sm:ml-5;
|
|
}
|
|
|
|
.image-center {
|
|
@apply mx-auto;
|
|
}
|
|
|
|
h2.section-title i {
|
|
@apply mr-4;
|
|
@apply text-zinc-600;
|
|
}
|
|
|
|
div.organization i {
|
|
@apply mr-1;
|
|
@apply text-stone-500;
|
|
}
|
|
|
|
ul.highlights {
|
|
@apply pe-4;
|
|
}
|
|
ul.highlights li {
|
|
@apply text-center;
|
|
@apply ring;
|
|
}
|
|
|