diff --git a/pages/aboutv2.hbs b/pages/aboutv2.hbs deleted file mode 100644 index fa742e2..0000000 --- a/pages/aboutv2.hbs +++ /dev/null @@ -1,47 +0,0 @@ ---- -{ - "urlFormat": "aboutv2.html", - "urlRedirects": [ - "/about-us-v2.html", - "/about-usv2.html" - ] -} ---- - - - - - - - - About Us Version 2 - - {{>head}} - {{!-- --}} - - - -
- - - {{>navbar}} - -
-
-

About - Version 2 #pinkBackground

-

{{global.name}} was founded in 2021 by 8 technology leaders.

-

Meet the team below!

-
-
- -
-
- {{#each global.photoGallery}} - - {{/each}} -
-
- - -
- \ No newline at end of file diff --git a/pages/tailwindcss.hbs b/pages/tailwindcss.hbs new file mode 100644 index 0000000..60a45f4 --- /dev/null +++ b/pages/tailwindcss.hbs @@ -0,0 +1,51 @@ +--- +{ + "urlFormat": "tailwindcss.html" +} +--- + + + + + + + + TailwindCSS Demo + + {{>head}} + {{!-- --}} + + + +
+ + {{>navbar}} +
+
+

TailwindCSS Demo

+

Responsive Grids

+
+
Card 1
+
Card 2
+
Card 3
+
Card 4
+
Card 5
+
+ +

More Grids

+
+
Card 1
+
Card 1
+
Card 1
+
Card 1
+
Card 1
+
+ +
+
+ +
+ \ No newline at end of file diff --git a/partials/navbar.hbs b/partials/navbar.hbs index aec529a..059fb09 100644 --- a/partials/navbar.hbs +++ b/partials/navbar.hbs @@ -15,6 +15,7 @@ diff --git a/src/global.css b/src/global.css index da04096..1fea482 100644 --- a/src/global.css +++ b/src/global.css @@ -1,9 +1,45 @@ @tailwind base; @tailwind components; -@tailwind utilities; +h1 { + @apply text-4xl mb-5 font-extrabold; +} + +h2 { + @apply text-2xl font-bold; +} + +h3 { + @apply text-lg font-bold; +} + +h4 { + @apply text-lg font-bold; +} +p { + @apply opacity-90; +} +.section { + @apply mt-8 mb-16; +} +/* TailwindCSS Demo Styling */ +.grid-demo-div { + @apply flex flex-col gap-x-10 gap-y-10 sm:grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5; +} + +.grid-card { + @apply border p-10 rounded-xl text-3xl text-center text-white align-middle bg-custom-color; + @apply hover:bg-yellow-200 text-black cursor-pointer; +} + +/* .grid-card:hover { + background-color: yellow; + color: black; +} */ + +@tailwind utilities; diff --git a/tailwind.config.js b/tailwind.config.js index d68d73b..984cbf6 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -7,7 +7,13 @@ module.exports = { ], darkMode: false, // or 'media' or 'class' theme: { - extend: {}, + extend: { + colors: { + "custom-color": "#40e0d0", + }, + lineHeight: { + }, + }, }, variants: { extend: {},