diff --git a/dist/tailshape.css b/dist/tailshape.css index a3a557c..b743c37 100755 --- a/dist/tailshape.css +++ b/dist/tailshape.css @@ -719,24 +719,8 @@ Ensure the default browser behavior of the `hidden` attribute. left: -0.25rem; } -.left-60 { - left: 15rem; -} - -.top-\[50\%\] { - top: 50%; -} - -.top-\[6\%\] { - top: 6%; -} - -.top-60 { - top: 15rem; -} - -.top-10 { - top: 2.5rem; +.-top-0 { + top: -0px; } .z-20 { @@ -783,6 +767,10 @@ Ensure the default browser behavior of the `hidden` attribute. order: 2; } +.order-4 { + order: 4; +} + .col-span-full { grid-column: 1 / -1; } @@ -1109,6 +1097,14 @@ Ensure the default browser behavior of the `hidden` attribute. margin-top: 2rem; } +.mb-12 { + margin-bottom: 3rem; +} + +.-mt-20 { + margin-top: -5rem; +} + .-mt-10 { margin-top: -2.5rem; } @@ -1125,6 +1121,14 @@ Ensure the default browser behavior of the `hidden` attribute. margin-top: 0.25rem; } +.ml-20 { + margin-left: 5rem; +} + +.mr-10 { + margin-right: 2.5rem; +} + .ml-1 { margin-left: 0.25rem; } @@ -1137,10 +1141,6 @@ Ensure the default browser behavior of the `hidden` attribute. margin-bottom: 1.25rem; } -.mb-12 { - margin-bottom: 3rem; -} - .mb-6 { margin-bottom: 1.5rem; } @@ -1225,10 +1225,6 @@ Ensure the default browser behavior of the `hidden` attribute. margin-top: -0.25rem; } -.-mt-20 { - margin-top: -5rem; -} - .ml-10 { margin-left: 2.5rem; } @@ -1269,10 +1265,6 @@ Ensure the default browser behavior of the `hidden` attribute. margin-top: 5rem; } -.mr-10 { - margin-right: 2.5rem; -} - .ml-5 { margin-left: 1.25rem; } @@ -1385,10 +1377,6 @@ Ensure the default browser behavior of the `hidden` attribute. margin-left: 1.75rem; } -.ml-20 { - margin-left: 5rem; -} - .-ml-3 { margin-left: -0.75rem; } @@ -1641,6 +1629,10 @@ Ensure the default browser behavior of the `hidden` attribute. width: 1.25rem; } +.w-5\/6 { + width: 83.333333%; +} + .w-56 { width: 14rem; } @@ -1725,10 +1717,6 @@ Ensure the default browser behavior of the `hidden` attribute. width: 9rem; } -.w-5\/6 { - width: 83.333333%; -} - .w-3\/6 { width: 50%; } @@ -1827,10 +1815,6 @@ Ensure the default browser behavior of the `hidden` attribute. width: 0.375rem; } -.w-4\/12 { - width: 33.333333%; -} - .min-w-full { min-width: 100%; } @@ -2278,6 +2262,10 @@ Ensure the default browser behavior of the `hidden` attribute. grid-template-columns: repeat(12, minmax(0, 1fr)); } +.grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); +} + .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } @@ -2294,14 +2282,6 @@ Ensure the default browser behavior of the `hidden` attribute. grid-template-columns: repeat(8, minmax(0, 1fr)); } -.grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); -} - -.grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); -} - .flex-row { flex-direction: row; } @@ -2382,8 +2362,8 @@ Ensure the default browser behavior of the `hidden` attribute. justify-content: space-evenly; } -.justify-items-end { - justify-items: end; +.justify-items-center { + justify-items: center; } .gap-3 { @@ -2749,6 +2729,16 @@ Ensure the default browser behavior of the `hidden` attribute. border-top-right-radius: 0.75rem; } +.rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; +} + .rounded-t-md { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; @@ -2764,11 +2754,6 @@ Ensure the default browser behavior of the `hidden` attribute. border-bottom-right-radius: 0.5rem; } -.rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; -} - .rounded-l-md { border-top-left-radius: 0.375rem; border-bottom-left-radius: 0.375rem; @@ -2784,11 +2769,6 @@ Ensure the default browser behavior of the `hidden` attribute. border-bottom-left-radius: 0px; } -.rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} - .rounded-b { border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0.25rem; @@ -2846,22 +2826,12 @@ Ensure the default browser behavior of the `hidden` attribute. border-width: 4px; } -.border-0 { - border-width: 0px; -} - .border-2 { border-width: 2px; } -.border-y-0 { - border-top-width: 0px; - border-bottom-width: 0px; -} - -.border-x-0 { - border-left-width: 0px; - border-right-width: 0px; +.border-0 { + border-width: 0px; } .border-b-0 { @@ -3554,6 +3524,11 @@ Ensure the default browser behavior of the `hidden` attribute. background-color: rgb(204 251 241 / var(--tw-bg-opacity)); } +.bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgb(252 165 165 / var(--tw-bg-opacity)); +} + .bg-opacity-5 { --tw-bg-opacity: 0.05; } @@ -4110,6 +4085,14 @@ Ensure the default browser behavior of the `hidden` attribute. padding-bottom: 1rem; } +.pb-5 { + padding-bottom: 1.25rem; +} + +.pb-24 { + padding-bottom: 6rem; +} + .pt-8 { padding-top: 2rem; } @@ -4126,10 +4109,6 @@ Ensure the default browser behavior of the `hidden` attribute. padding-bottom: 2rem; } -.pb-5 { - padding-bottom: 1.25rem; -} - .pl-2 { padding-left: 0.5rem; } @@ -4138,10 +4117,6 @@ Ensure the default browser behavior of the `hidden` attribute. padding-left: 3rem; } -.pb-24 { - padding-bottom: 6rem; -} - .pb-3 { padding-bottom: 0.75rem; } @@ -4540,6 +4515,11 @@ Ensure the default browser behavior of the `hidden` attribute. color: rgb(156 163 175 / var(--tw-text-opacity)); } +.text-blue-500 { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + .text-gray-100 { --tw-text-opacity: 1; color: rgb(243 244 246 / var(--tw-text-opacity)); @@ -4630,11 +4610,6 @@ Ensure the default browser behavior of the `hidden` attribute. color: rgb(168 85 247 / var(--tw-text-opacity)); } -.text-blue-500 { - --tw-text-opacity: 1; - color: rgb(59 130 246 / var(--tw-text-opacity)); -} - .text-yellow-400 { --tw-text-opacity: 1; color: rgb(250 204 21 / var(--tw-text-opacity)); @@ -4844,6 +4819,16 @@ Ensure the default browser behavior of the `hidden` attribute. color: rgb(185 28 28 / var(--tw-text-opacity)); } +.text-cyan-300 { + --tw-text-opacity: 1; + color: rgb(103 232 249 / var(--tw-text-opacity)); +} + +.text-red-900 { + --tw-text-opacity: 1; + color: rgb(127 29 29 / var(--tw-text-opacity)); +} + .text-opacity-50 { --tw-text-opacity: 0.5; } @@ -5113,11 +5098,6 @@ Ensure the default browser behavior of the `hidden` attribute. 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); } -.drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05)); - 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); -} - .grayscale { --tw-grayscale: grayscale(100%); 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); @@ -5172,18 +5152,6 @@ Ensure the default browser behavior of the `hidden` attribute. transition-duration: 150ms; } -.delay-100 { - transition-delay: 100ms; -} - -.delay-200 { - transition-delay: 200ms; -} - -.delay-1000 { - transition-delay: 1000ms; -} - .duration-300 { transition-duration: 300ms; } @@ -5360,26 +5328,6 @@ Ensure the default browser behavior of the `hidden` attribute. content: var(--tw-content); } -.before\:content-\[\'--\'\]::before { - --tw-content: '--'; - content: var(--tw-content); -} - -.before\:content-\[\'-\'\'\'\]::before { - --tw-content: '-'''; - content: var(--tw-content); -} - -.before\:content-\[\'-\'\'\'\'\'\]::before { - --tw-content: '-'''''; - content: var(--tw-content); -} - -.before\:content-\[\'-\'\'\'\'\'\'\'\]::before { - --tw-content: '-'''''''; - content: var(--tw-content); -} - .after\:content-\[\'\+\'\]::after { --tw-content: '+'; content: var(--tw-content); @@ -5410,6 +5358,22 @@ Ensure the default browser behavior of the `hidden` attribute. --tw-ring-opacity: 0.4; } +.hover\:absolute:hover { + position: absolute; +} + +.hover\:top-2:hover { + top: 0.5rem; +} + +.hover\:top-0:hover { + top: 0px; +} + +.hover\:-top-2:hover { + top: -0.5rem; +} + .hover\:z-10:hover { z-index: 10; } @@ -5434,27 +5398,15 @@ Ensure the default browser behavior of the `hidden` attribute. transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } -.hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); -} - .hover\:scale-110:hover { --tw-scale-x: 1.1; --tw-scale-y: 1.1; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } -.hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; - transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); -} - -.hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; +.hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } @@ -5479,16 +5431,6 @@ Ensure the default browser behavior of the `hidden` attribute. border-right-width: 0px; } -.hover\:border-y-2:hover { - border-top-width: 2px; - border-bottom-width: 2px; -} - -.hover\:border-x-2:hover { - border-left-width: 2px; - border-right-width: 2px; -} - .hover\:border-b-2:hover { border-bottom-width: 2px; } @@ -5956,11 +5898,6 @@ Ensure the default browser behavior of the `hidden` attribute. color: rgb(126 34 206 / var(--tw-text-opacity)); } -.hover\:text-gray-50:hover { - --tw-text-opacity: 1; - color: rgb(249 250 251 / var(--tw-text-opacity)); -} - .hover\:text-opacity-75:hover { --tw-text-opacity: 0.75; } @@ -6793,6 +6730,11 @@ Ensure the default browser behavior of the `hidden` attribute. background-color: rgb(55 65 81 / var(--tw-bg-opacity)); } +.dark .dark\:bg-white { + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + .dark .dark\:bg-blue-300 { --tw-bg-opacity: 1; background-color: rgb(147 197 253 / var(--tw-bg-opacity)); @@ -6898,11 +6840,6 @@ Ensure the default browser behavior of the `hidden` attribute. background-color: rgb(34 211 238 / var(--tw-bg-opacity)); } -.dark .dark\:bg-white { - --tw-bg-opacity: 1; - background-color: rgb(255 255 255 / var(--tw-bg-opacity)); -} - .dark .dark\:bg-amber-50 { --tw-bg-opacity: 1; background-color: rgb(255 251 235 / var(--tw-bg-opacity)); @@ -7460,16 +7397,6 @@ Ensure the default browser behavior of the `hidden` attribute. box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.dark .dark\:shadow-white { - --tw-shadow-color: #fff; - --tw-shadow: var(--tw-shadow-colored); -} - -.dark .dark\:shadow-cyan-300 { - --tw-shadow-color: #67e8f9; - --tw-shadow: var(--tw-shadow-colored); -} - .dark .dark\:ring-2 { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -7506,81 +7433,6 @@ Ensure the default browser behavior of the `hidden` attribute. --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity)); } -.dark .dark\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1)); - 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); -} - -.dark .dark\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06)); - 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); -} - -.dark .dark\:drop-shadow-\[\] { - --tw-drop-shadow: drop-shadow(); - 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); -} - -.dark .dark\:drop-shadow-\[red\] { - --tw-drop-shadow: drop-shadow(red); - 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); -} - -.dark .dark\:drop-shadow-\[0_10px_8px_rgb\(0\2c 0\2c 0\2c 0\.04\)\] { - --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0,0,0,0.04)); - 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); -} - -.dark .dark\:drop-shadow-\[0_10px_8px_rgba\(0\2c 0\2c 0\2c 0\.04\)\] { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0,0,0,0.04)); - 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); -} - -.dark .dark\:drop-shadow-\[0_10px_8px_rgba\(\)\] { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba()); - 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); -} - -.dark .dark\:drop-shadow-\[0_10px_8px_rgba\(\.26\)\] { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(.26)); - 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); -} - -.dark .dark\:drop-shadow-\[0_10px_8px_rgba\(\.40\)\] { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(.40)); - 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); -} - -.dark .dark\:drop-shadow-\[0_10px_8px_rgba\(\.4\)\] { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(.4)); - 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); -} - -.dark .dark\:drop-shadow-\[0_10px_8px_rgba\(229\2c 171\2c 159\2c 0\.4\)\] { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(229,171,159,0.4)); - 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); -} - -.dark .dark\:drop-shadow-\[0_10px_8px_rgba\(229\2c 171\2c 159\2c 0\.25\)\] { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(229,171,159,0.25)); - 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); -} - -.dark .dark\:drop-shadow-\[0_10px_8px_rgba\(229\2c 171\2c 159\2c 0\.4s\)\] { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(229,171,159,0.4s)); - 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); -} - -.dark .dark\:drop-shadow-\[0_10px_8px_rgba\(209\2c 213\2c 219\2c 0\.4\)\] { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(209,213,219,0.4)); - 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); -} - -.dark .dark\:drop-shadow-\[0_10px_8px_rgba\(209\2c 213\2c 219\2c 0\.2\)\] { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(209,213,219,0.2)); - 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); -} - .dark .dark\:drop-shadow-\[0_10px_8px_rgba\(209\2c 213\2c 219\2c 0\.1\)\] { --tw-drop-shadow: drop-shadow(0 10px 8px rgba(209,213,219,0.1)); 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); @@ -8090,6 +7942,10 @@ Ensure the default browser behavior of the `hidden` attribute. margin-right: 1rem; } + .sm\:mb-12 { + margin-bottom: 3rem; + } + .sm\:mr-6 { margin-right: 1.5rem; } @@ -8142,10 +7998,6 @@ Ensure the default browser behavior of the `hidden` attribute. margin-left: 0px; } - .sm\:mb-12 { - margin-bottom: 3rem; - } - .sm\:mt-12 { margin-top: 3rem; } @@ -8700,6 +8552,11 @@ Ensure the default browser behavior of the `hidden` attribute. line-height: 2.25rem; } + .sm\:text-6xl { + font-size: 3.75rem; + line-height: 1; + } + .sm\:text-\[40px\] { font-size: 40px; } @@ -8729,11 +8586,6 @@ Ensure the default browser behavior of the `hidden` attribute. line-height: 1.75rem; } - .sm\:text-6xl { - font-size: 3.75rem; - line-height: 1; - } - .sm\:text-\[42px\] { font-size: 42px; } @@ -9205,6 +9057,10 @@ Ensure the default browser behavior of the `hidden` attribute. width: 50%; } + .md\:w-3\/6 { + width: 50%; + } + .md\:w-64 { width: 16rem; } @@ -9265,10 +9121,6 @@ Ensure the default browser behavior of the `hidden` attribute. width: 83.333333%; } - .md\:w-3\/6 { - width: 50%; - } - .md\:w-10 { width: 2.5rem; } @@ -9616,6 +9468,16 @@ Ensure the default browser behavior of the `hidden` attribute. padding: 0px; } + .md\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; + } + + .md\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + .md\:py-0 { padding-top: 0px; padding-bottom: 0px; @@ -9636,11 +9498,6 @@ Ensure the default browser behavior of the `hidden` attribute. padding-bottom: 2rem; } - .md\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; - } - .md\:py-40 { padding-top: 10rem; padding-bottom: 10rem; @@ -9676,11 +9533,6 @@ Ensure the default browser behavior of the `hidden` attribute. padding-bottom: 0.75rem; } - .md\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; - } - .md\:px-16 { padding-left: 4rem; padding-right: 4rem; @@ -9925,6 +9777,10 @@ Ensure the default browser behavior of the `hidden` attribute. color: rgb(156 163 175 / var(--tw-text-opacity)); } + .md\:opacity-0 { + opacity: 0; + } + .md\:shadow-none { --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; @@ -10118,6 +9974,10 @@ Ensure the default browser behavior of the `hidden` attribute. margin-top: 4rem; } + .lg\:-mt-40 { + margin-top: -10rem; + } + .lg\:mt-0 { margin-top: 0px; } @@ -10170,10 +10030,6 @@ Ensure the default browser behavior of the `hidden` attribute. margin-bottom: 4rem; } - .lg\:-mt-40 { - margin-top: -10rem; - } - .lg\:mt-5 { margin-top: 1.25rem; } @@ -10688,6 +10544,11 @@ Ensure the default browser behavior of the `hidden` attribute. padding-right: 1.5rem; } + .lg\:px-32 { + padding-left: 8rem; + padding-right: 8rem; + } + .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; @@ -10743,11 +10604,6 @@ Ensure the default browser behavior of the `hidden` attribute. padding-right: 6rem; } - .lg\:px-32 { - padding-left: 8rem; - padding-right: 8rem; - } - .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; @@ -10806,6 +10662,10 @@ Ensure the default browser behavior of the `hidden` attribute. padding-bottom: 90px; } + .lg\:pb-56 { + padding-bottom: 14rem; + } + .lg\:pr-0 { padding-right: 0px; } @@ -10826,10 +10686,6 @@ Ensure the default browser behavior of the `hidden` attribute. padding-right: 4rem; } - .lg\:pb-56 { - padding-bottom: 14rem; - } - .lg\:pr-24 { padding-right: 6rem; } @@ -10985,6 +10841,10 @@ Ensure the default browser behavior of the `hidden` attribute. color: rgb(67 56 202 / var(--tw-text-opacity)); } + .lg\:opacity-0 { + opacity: 0; + } + .lg\:shadow-none { --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; @@ -11156,14 +11016,14 @@ Ensure the default browser behavior of the `hidden` attribute. min-width: 0px; } - .xl\:max-w-screen-xl { - max-width: 1280px; - } - .xl\:max-w-3xl { max-width: 48rem; } + .xl\:max-w-screen-xl { + max-width: 1280px; + } + .xl\:max-w-6xl { max-width: 72rem; } diff --git a/public/componets/navs_headers/super_header.html b/public/componets/navs_headers/super_header.html new file mode 100644 index 0000000..e478f36 --- /dev/null +++ b/public/componets/navs_headers/super_header.html @@ -0,0 +1,217 @@ + + + + + + + + + Header 21 + + + + + + + + + + + +
some test text
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/template/blog_page/1_blog_page.html b/public/template/blog_page/1_blog_page.html index 207c03f..98d43bd 100644 --- a/public/template/blog_page/1_blog_page.html +++ b/public/template/blog_page/1_blog_page.html @@ -148,7 +148,7 @@ -
+

Provident blanditiis wlk exercitationem