adding img shortcode and using it in groups

This commit is contained in:
Chris Cochrun 2025-05-21 23:39:55 -05:00
parent c32cccf3c3
commit aa95d2e284
34 changed files with 136 additions and 83 deletions

View file

@ -261,6 +261,9 @@
.bottom-4 {
bottom: calc(var(--spacing) * 4);
}
.-left-1 {
left: calc(var(--spacing) * -1);
}
.-left-1\/2 {
left: calc(calc(1/2 * 100%) * -1);
}
@ -315,6 +318,9 @@
.mx-auto {
margin-inline: auto;
}
.my-0 {
margin-block: calc(var(--spacing) * 0);
}
.my-2 {
margin-block: calc(var(--spacing) * 2);
}
@ -430,6 +436,9 @@
.h-0 {
height: calc(var(--spacing) * 0);
}
.h-2 {
height: calc(var(--spacing) * 2);
}
.h-2\/3 {
height: calc(2/3 * 100%);
}
@ -469,6 +478,21 @@
.h-64 {
height: calc(var(--spacing) * 64);
}
.h-100 {
height: calc(var(--spacing) * 100);
}
.h-150 {
height: calc(var(--spacing) * 150);
}
.h-156 {
height: calc(var(--spacing) * 156);
}
.h-256 {
height: calc(var(--spacing) * 256);
}
.h-450 {
height: calc(var(--spacing) * 450);
}
.h-full {
height: 100%;
}
@ -478,12 +502,21 @@
.max-h-12 {
max-height: calc(var(--spacing) * 12);
}
.w-1 {
width: calc(var(--spacing) * 1);
}
.w-1\/3 {
width: calc(1/3 * 100%);
}
.w-2 {
width: calc(var(--spacing) * 2);
}
.w-2\/3 {
width: calc(2/3 * 100%);
}
.w-3 {
width: calc(var(--spacing) * 3);
}
.w-3\/4 {
width: calc(3/4 * 100%);
}
@ -499,6 +532,9 @@
.w-9 {
width: calc(var(--spacing) * 9);
}
.w-11 {
width: calc(var(--spacing) * 11);
}
.w-11\/12 {
width: calc(11/12 * 100%);
}
@ -520,6 +556,15 @@
.w-64 {
width: calc(var(--spacing) * 64);
}
.w-100 {
width: calc(var(--spacing) * 100);
}
.w-150 {
width: calc(var(--spacing) * 150);
}
.w-600 {
width: calc(var(--spacing) * 600);
}
.w-auto {
width: auto;
}
@ -544,9 +589,15 @@
.flex-none {
flex: none;
}
.flex-shrink {
flex-shrink: 1;
}
.flex-shrink-0 {
flex-shrink: 0;
}
.flex-grow {
flex-grow: 1;
}
.grow {
flex-grow: 1;
}
@ -603,6 +654,9 @@
.place-content-end {
place-content: end;
}
.place-items-center {
place-items: center;
}
.content-center {
align-content: center;
}
@ -806,6 +860,9 @@
.object-cover {
object-fit: cover;
}
.object-fill {
object-fit: fill;
}
.p-1 {
padding: calc(var(--spacing) * 1);
}
@ -821,6 +878,9 @@
.p-5 {
padding: calc(var(--spacing) * 5);
}
.px-1 {
padding-inline: calc(var(--spacing) * 1);
}
.px-1\.5 {
padding-inline: calc(var(--spacing) * 1.5);
}
@ -836,6 +896,9 @@
.px-6 {
padding-inline: calc(var(--spacing) * 6);
}
.py-0 {
padding-block: calc(var(--spacing) * 0);
}
.py-0\.5 {
padding-block: calc(var(--spacing) * 0.5);
}
@ -854,6 +917,12 @@
.py-6 {
padding-block: calc(var(--spacing) * 6);
}
.py-8 {
padding-block: calc(var(--spacing) * 8);
}
.py-10 {
padding-block: calc(var(--spacing) * 10);
}
.pt-1 {
padding-top: calc(var(--spacing) * 1);
}
@ -1029,6 +1098,10 @@
.ring-black {
--tw-ring-color: var(--color-black);
}
.outline {
outline-style: var(--tw-outline-style);
outline-width: 1px;
}
.outline-2 {
outline-style: var(--tw-outline-style);
outline-width: 2px;
@ -1040,6 +1113,9 @@
--tw-blur: blur(8px);
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.filter {
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.transition {
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter;
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@ -1208,13 +1284,6 @@
}
}
}
.hover\:\!bg-gray-500 {
&:hover {
@media (hover: hover) {
background-color: var(--color-gray-500) !important;
}
}
}
.hover\:bg-blue-900 {
&:hover {
@media (hover: hover) {
@ -1314,13 +1383,6 @@
}
}
}
.hover\:\!outline-blue-500 {
&:hover {
@media (hover: hover) {
outline-color: var(--color-blue-500) !important;
}
}
}
.hover\:file\:ring-2 {
&:hover {
@media (hover: hover) {
@ -1677,16 +1739,6 @@
color: var(--color-white);
}
}
.dark\:outline-blue-500 {
@media (prefers-color-scheme: dark) {
outline-color: var(--color-blue-500);
}
}
.dark\:outline-blue-800 {
@media (prefers-color-scheme: dark) {
outline-color: var(--color-blue-800);
}
}
.dark\:hover\:\!bg-blue-700 {
@media (prefers-color-scheme: dark) {
&:hover {
@ -1696,15 +1748,6 @@
}
}
}
.dark\:hover\:\!bg-gray-700 {
@media (prefers-color-scheme: dark) {
&:hover {
@media (hover: hover) {
background-color: var(--color-gray-700) !important;
}
}
}
}
.dark\:hover\:bg-gray-600 {
@media (prefers-color-scheme: dark) {
&:hover {
@ -1723,15 +1766,6 @@
}
}
}
.dark\:hover\:\!outline-blue-700 {
@media (prefers-color-scheme: dark) {
&:hover {
@media (hover: hover) {
outline-color: var(--color-blue-700) !important;
}
}
}
}
.\[\&\>\*\]\:py-4 {
&>* {
padding-block: calc(var(--spacing) * 4);

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB