From b0522cf7fe37def64f81d8cf9a06e53cfd997648 Mon Sep 17 00:00:00 2001 From: Cole Bemis Date: Mon, 29 May 2017 17:26:25 -0700 Subject: [PATCH] Seperate header and hero --- _includes/header.html | 14 +------------- _includes/hero.html | 10 ++++++++++ index.html | 1 + style.css | 13 +++++-------- 4 files changed, 17 insertions(+), 21 deletions(-) create mode 100644 _includes/hero.html 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; }