diff --git a/src/_layouts/home.html b/src/_layouts/home.html index fd6eaa6..e3faf3b 100644 --- a/src/_layouts/home.html +++ b/src/_layouts/home.html @@ -7,7 +7,8 @@ layout: default
-
+
+

Find Bit Goblin on YouTube.

@@ -26,12 +27,13 @@ layout: default

How About a Cheap, Used AMD Graphics Card? (R9 270X)

- + +
-
+

Like watching Old School RuneScape videos? Go watch Ascendings.

@@ -52,7 +54,7 @@ layout: default
- +
diff --git a/src/assets/stylesheets/_variables.sass b/src/assets/stylesheets/_variables.sass new file mode 100644 index 0000000..21352fa --- /dev/null +++ b/src/assets/stylesheets/_variables.sass @@ -0,0 +1,4 @@ +$footer-height: 165px + +$color-primary: #1e76d1 +$color-primary-hover: darken(#1e76d1, 10%) diff --git a/src/assets/stylesheets/lumbridge.sass b/src/assets/stylesheets/lumbridge.sass index e2eebc4..af3381e 100644 --- a/src/assets/stylesheets/lumbridge.sass +++ b/src/assets/stylesheets/lumbridge.sass @@ -1,19 +1,21 @@ --- --- +@import "_variables" + body font-family: "Gill Sans", sans-serif font-size: 2rem margin: 0 - padding-bottom: 125px + padding-bottom: $footer-height a - color: #1e76d1 + color: $color-primary font-weight: 500 text-decoration: none transition: color 200ms ease-in-out &:hover - color: darken(#1e76d1, 10%) + color: $color-primary-hover hr margin-top: 35px @@ -32,6 +34,8 @@ hr padding: 0 background: white +// header + #header-box position: relative z-index: 2 @@ -86,7 +90,7 @@ hr text-decoration: underline #main-content - margin-bottom: 40px + padding-bottom: 40px // home page styles @@ -97,13 +101,16 @@ hr padding: 15px 20px 0 border: 2px solid #bbb - img + img, p transition: all 300ms ease-in-out &:hover img transform: scale(1.1) + p + transform: translate(20px, 10px) scale(1.1) + // Blog posts page #post-list @@ -125,12 +132,12 @@ hr // footer section #footer + box-sizing: border-box position: fixed z-index: -1 bottom: 0 width: 100% - margin-top: 25px - padding-top: 15px + height: $footer-height + padding-top: 25px background: #212121 - border-top: 2px solid #999 color: white