From c18ba66cc994be6d211271a7c1a174cbc73d9517 Mon Sep 17 00:00:00 2001 From: Teoman Soygul Date: Tue, 21 Jan 2020 00:36:13 +0100 Subject: [PATCH] add top navigation buttons --- assets/css/style.scss | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/assets/css/style.scss b/assets/css/style.scss index 43b0473..16f07bb 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -28,6 +28,7 @@ header h4 { color: #666; } +// only active on root/home page URL (/) .home { h2 { margin-top: 2.5rem; @@ -41,3 +42,34 @@ header h4 { } } } + +// navigation buttons +.btn-github .icon { + opacity: 0.6; + background: url("../images/github.png") 0 0 no-repeat; +} + +.btn-youtube .icon { + opacity: 0.6; + background: url("../images/youtube.png") 0 0 no-repeat; +} + +.btn-twitter .icon { + opacity: 0.6; + background: url("../images/twitter.png") 0 0 no-repeat; +} + +.btn-patreon .icon { + opacity: 0.6; + background: url("../images/patreon.png") 0 0 no-repeat; +} + +.btn-paypal .icon { + opacity: 0.6; + background: url("../images/paypal.png") 0 0 no-repeat; +} + +.btn-crypto .icon { + opacity: 0.6; + background: url("../images/crypto.png") 0 0 no-repeat; +}