From 330be875330cbbbf83dd27a197c3d9df27474920 Mon Sep 17 00:00:00 2001 From: Jeremy Nusser Date: Sat, 29 Oct 2022 09:51:00 -0500 Subject: [PATCH] Updated hero on index.html. --- assets/css/style.css | 341 ++++++++++++++++-- layouts/index.html | 91 ++--- layouts/partials/nav.html | 2 +- ...s_ad9a12809e06de71aca16e9138fbecf4.content | 341 ++++++++++++++++-- 4 files changed, 658 insertions(+), 117 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index e47338e..9556dce 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -2278,6 +2278,10 @@ video { border-width: 0; } +.pointer-events-none { + pointer-events: none; +} + .absolute { position: absolute; } @@ -2342,6 +2346,10 @@ video { grid-column: span 3 / span 3; } +.col-span-6 { + grid-column: span 6 / span 6; +} + .mx-auto { margin-left: auto; margin-right: auto; @@ -2372,6 +2380,11 @@ video { margin-bottom: -0.5rem; } +.my-8 { + margin-top: 2rem; + margin-bottom: 2rem; +} + .mb-4 { margin-bottom: 1rem; } @@ -2448,6 +2461,22 @@ video { margin-bottom: 0.5rem; } +.mt-0 { + margin-top: 0px; +} + +.mb-6 { + margin-bottom: 1.5rem; +} + +.mb-3 { + margin-bottom: 0.75rem; +} + +.mr-2 { + margin-right: 0.5rem; +} + .block { display: block; } @@ -2521,6 +2550,14 @@ video { height: 1rem; } +.h-64 { + height: 16rem; +} + +.h-7 { + height: 1.75rem; +} + .max-h-12 { max-height: 3rem; } @@ -2609,6 +2646,10 @@ video { max-width: none; } +.max-w-4xl { + max-width: 56rem; +} + .flex-1 { flex: 1 1 0%; } @@ -2689,6 +2730,10 @@ video { flex-wrap: wrap; } +.place-items-center { + place-items: center; +} + .items-start { align-items: flex-start; } @@ -2717,6 +2762,10 @@ video { gap: 1rem; } +.gap-8 { + gap: 2rem; +} + .space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); @@ -2747,6 +2796,23 @@ video { margin-bottom: calc(2rem * var(--tw-space-y-reverse)); } +.space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); +} + +.divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-divide-opacity)); +} + .overflow-hidden { overflow: hidden; } @@ -2865,6 +2931,21 @@ video { background-color: rgb(129 140 248 / var(--tw-bg-opacity)); } +.bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgb(209 213 219 / var(--tw-bg-opacity)); +} + +.bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgb(156 163 175 / var(--tw-bg-opacity)); +} + +.bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgb(229 231 235 / var(--tw-bg-opacity)); +} + .bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } @@ -2885,6 +2966,12 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); } +.from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-to: rgb(49 46 129 / 0); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); +} + .via-indigo-500 { --tw-gradient-to: rgb(99 102 241 / 0); --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to); @@ -2894,6 +2981,14 @@ video { --tw-gradient-to: #1e40af; } +.to-blue-900 { + --tw-gradient-to: #1e3a8a; +} + +.to-gray-900 { + --tw-gradient-to: #111827; +} + .bg-center { background-position: center; } @@ -2958,14 +3053,9 @@ video { padding-bottom: 1rem; } -.py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; -} - -.px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; +.py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } .py-1 { @@ -2973,11 +3063,21 @@ video { padding-bottom: 0.25rem; } +.px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; +} + .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; } +.py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; +} + .px-8 { padding-left: 2rem; padding-right: 2rem; @@ -3033,11 +3133,6 @@ video { padding-bottom: 3rem; } -.py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; -} - .pt-8 { padding-top: 2rem; } @@ -3086,6 +3181,26 @@ video { padding-top: 0.5rem; } +.pl-3 { + padding-left: 0.75rem; +} + +.pl-10 { + padding-left: 2.5rem; +} + +.pr-5 { + padding-right: 1.25rem; +} + +.pl-5 { + padding-left: 1.25rem; +} + +.pb-2 { + padding-bottom: 0.5rem; +} + .text-left { text-align: left; } @@ -3119,9 +3234,9 @@ video { line-height: 1; } -.text-5xl { - font-size: 3rem; - line-height: 1; +.text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } .text-base { @@ -3134,16 +3249,16 @@ video { line-height: 1.75rem; } -.text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; -} - .text-2xl { font-size: 1.5rem; line-height: 2rem; } +.text-5xl { + font-size: 3rem; + line-height: 1; +} + .font-black { font-weight: 900; } @@ -3164,6 +3279,14 @@ video { font-weight: 600; } +.font-extrabold { + font-weight: 800; +} + +.font-normal { + font-weight: 400; +} + .uppercase { text-transform: uppercase; } @@ -3184,6 +3307,10 @@ video { line-height: 2.5; } +.leading-none { + line-height: 1; +} + .tracking-tight { letter-spacing: -0.025em; } @@ -3262,6 +3389,16 @@ video { color: rgb(24 24 27 / var(--tw-text-opacity)); } +.text-gray-800 { + --tw-text-opacity: 1; + color: rgb(31 41 55 / var(--tw-text-opacity)); +} + +.text-gray-50 { + --tw-text-opacity: 1; + color: rgb(249 250 251 / var(--tw-text-opacity)); +} + .text-opacity-40 { --tw-text-opacity: 0.4; } @@ -3705,6 +3842,11 @@ EmojiSymbols; color: rgb(99 102 241 / var(--tw-text-opacity)); } +.dark .dark\:hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + .dark .dark\:focus\:border-indigo-500:focus { --tw-border-opacity: 1; border-color: rgb(99 102 241 / var(--tw-border-opacity)); @@ -3739,6 +3881,10 @@ EmojiSymbols; grid-column: span 2 / span 2; } + .sm\:-m-6 { + margin: -1.5rem; + } + .sm\:mx-auto { margin-left: auto; margin-right: auto; @@ -3772,6 +3918,10 @@ EmojiSymbols; margin-left: 0.75rem; } + .sm\:mb-6 { + margin-bottom: 1.5rem; + } + .sm\:block { display: block; } @@ -3780,15 +3930,31 @@ EmojiSymbols; display: flex; } + .sm\:hidden { + display: none; + } + .sm\:h-2\/3 { height: 66.666667%; } + .sm\:h-96 { + height: 24rem; + } + .sm\:w-fit { width: -moz-fit-content; width: fit-content; } + .sm\:w-80 { + width: 20rem; + } + + .sm\:w-auto { + width: auto; + } + .sm\:max-w-3xl { max-width: 48rem; } @@ -3805,6 +3971,22 @@ EmojiSymbols; justify-content: center; } + .sm\:gap-12 { + gap: 3rem; + } + + .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + .sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem; @@ -3843,11 +4025,6 @@ EmojiSymbols; text-align: center; } - .sm\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; - } - .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; @@ -3953,6 +4130,10 @@ EmojiSymbols; flex-direction: row; } + .md\:place-items-center { + place-items: center; + } + .md\:items-center { align-items: center; } @@ -4183,6 +4364,10 @@ EmojiSymbols; border-bottom-left-radius: 0.5rem; } + .md\:p-0 { + padding: 0px; + } + .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; @@ -4229,6 +4414,10 @@ EmojiSymbols; padding-bottom: 4rem; } + .md\:pt-32 { + padding-top: 8rem; + } + .md\:text-left { text-align: left; } @@ -4243,15 +4432,15 @@ EmojiSymbols; line-height: 1; } - .md\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; - } - .md\:text-5xl { font-size: 3rem; line-height: 1; } + + .md\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; + } } @media (min-width: 1024px) { @@ -4305,6 +4494,11 @@ EmojiSymbols; margin-right: auto; } + .lg\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + .lg\:mt-0 { margin-top: 0px; } @@ -4317,6 +4511,26 @@ EmojiSymbols; margin-bottom: 4rem; } + .lg\:mt-6 { + margin-top: 1.5rem; + } + + .lg\:mt-12 { + margin-top: 3rem; + } + + .lg\:mt-16 { + margin-top: 4rem; + } + + .lg\:mb-24 { + margin-bottom: 6rem; + } + + .lg\:mb-0 { + margin-bottom: 0px; + } + .lg\:grid { display: grid; } @@ -4357,6 +4571,14 @@ EmojiSymbols; grid-template-columns: repeat(2, minmax(0, 1fr)); } + .lg\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .lg\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + .lg\:place-items-center { place-items: center; } @@ -4381,6 +4603,10 @@ EmojiSymbols; gap: 6rem; } + .lg\:gap-4 { + gap: 1rem; + } + .lg\:prose-xl { font-size: 1.25rem; line-height: 1.8; @@ -4645,6 +4871,18 @@ EmojiSymbols; padding-bottom: 4rem; } + .lg\:pt-6 { + padding-top: 1.5rem; + } + + .lg\:pt-32 { + padding-top: 8rem; + } + + .lg\:pt-48 { + padding-top: 12rem; + } + .lg\:text-left { text-align: left; } @@ -4656,6 +4894,18 @@ EmojiSymbols; } @media (min-width: 1280px) { + .xl\:mt-16 { + margin-top: 4rem; + } + + .xl\:mb-8 { + margin-bottom: 2rem; + } + + .xl\:mb-2 { + margin-bottom: 0.5rem; + } + .xl\:block { display: block; } @@ -4664,6 +4914,14 @@ EmojiSymbols; display: inline; } + .xl\:w-96 { + width: 24rem; + } + + .xl\:pt-48 { + padding-top: 12rem; + } + .xl\:text-9xl { font-size: 8rem; line-height: 1; @@ -4678,4 +4936,25 @@ EmojiSymbols; font-size: 1.125rem; line-height: 1.75rem; } + + .xl\:text-7xl { + font-size: 4.5rem; + line-height: 1; + } + + .xl\:text-6xl { + font-size: 3.75rem; + line-height: 1; + } + + .xl\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; + } +} + +@media (min-width: 1536px) { + .\32xl\:pt-48 { + padding-top: 12rem; + } } \ No newline at end of file diff --git a/layouts/index.html b/layouts/index.html index aa414d9..a495d54 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,61 +1,44 @@ {{ define "main" }}
-
-
-
-
-
-

- TailBliss -

-

- Super Fast, and Flexible -

-
-
- - - What's new - - - Just shipped version 0.1.0 - - - - -

- A Hugo theme built with love, using TailwindCSS 3, Apline.JS, and Hugo - Pipes. Images are optimized for use with Hugo Pipes and converted to - WebP format. So load it up with high ressolution images in the /assets - folder, and Hugo will optimize them for you. -

- - Get Started - +
+ @@ -64,7 +47,7 @@ -
+