diff --git a/_includes/header.html b/_includes/header.html index d60bef5..06b3d1a 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -2,22 +2,10 @@

Feather v{{ site.data.package.version }}

-
- -
-

Simply beautiful open source icons

- - - Download - -
diff --git a/_includes/hero.html b/_includes/hero.html new file mode 100644 index 0000000..e24c5bc --- /dev/null +++ b/_includes/hero.html @@ -0,0 +1,10 @@ +
+

Simply beautiful open source icons

+ + Download + +
\ No newline at end of file diff --git a/index.html b/index.html index 76a4db3..ecdefe8 100644 --- a/index.html +++ b/index.html @@ -34,6 +34,7 @@ links: {% include header.html %} + {% include hero.html %} {% include icons.html %} {% include footer.html links=page.links %} diff --git a/style.css b/style.css index 4302dd6..db4265c 100644 --- a/style.css +++ b/style.css @@ -1,15 +1,16 @@ :root { --accent: #4353FF; -} - -.accent { - color: var(--accent); + --accent-darker: #3E4DED; } .bg-accent { background-color: var(--accent); } +.hover-bg-accent-darker:hover { + background-color: var(--accent-darker); +} + .rubik { font-family: "Rubik", sans-serif; } @@ -28,10 +29,6 @@ text-decoration: none; } -.button-outline { - box-shadow: inset 0 0 0 1px currentColor; -} - .lh-none { line-height: 0; }