pelican-papyrus/tailwind.css

42 lines
599 B
CSS
Raw Permalink Normal View History

2022-02-21 10:18:57 +01:00
@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;
}