From a1660b616e6b506fbbcea671012d70b4a6913cc2 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 9 May 2019 18:10:55 +0700 Subject: [PATCH] #9 Closed. finished footer --- index.html | 40 ++++++++++++++++++++++++++++++++++++---- style.css | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 9e2adba..6e2078a 100644 --- a/index.html +++ b/index.html @@ -17,6 +17,7 @@ integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> + @@ -65,10 +66,41 @@

"Because the platypus both lays eggs and produces mi diff --git a/style.css b/style.css index 0a9e058..b986ddc 100644 --- a/style.css +++ b/style.css @@ -111,5 +111,56 @@ footer { padding-bottom: 20px; } +/* footer style */ +.container { + display: flex; + justify-content: space-between; + margin: auto; + +} + +li { + list-style: none; + color: #F09048; +} +li:hover{ + color: #D86000; + cursor: pointer; +} + +.footer-links { + +} + +.list-header { + width: 100%; + color: #D86000; + line-height: 50px; + margin-top: 50px; +} +.social-media-btn { + justify-content: center; + display: flex; + margin-top: 50px; +} +.fa { + margin: 0px 20px 0 0; + padding: 15px; + width: 60px; + height: 60px; + font-size: 30px; + text-align: center; + border-radius: 50%; + color: #D86000; + background-color: #222326; + text-decoration: none; +} +.fa:hover{ + color: #D86000; + cursor: pointer; +} +a:hover { + text-decoration: none; +} \ No newline at end of file