From a90987052afcf0ffa08a28e59403e14203041b9c Mon Sep 17 00:00:00 2001 From: Juniperistic Date: Thu, 20 Apr 2023 22:30:59 -0400 Subject: [PATCH] Social Links Added --- index.html | 25 +++++++++++++++++-------- styles.css | 39 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 55 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index c7561b6..b1df34a 100644 --- a/index.html +++ b/index.html @@ -21,13 +21,20 @@
  • About
  • Learning
  • Portfolio
  • -
  • Contact
  • Compsci Student

    -

    Hi, I'm Miranda
    Morris From The U.S.

    +

    Hi, I'm Miranda

    +
    + + + +
    + + + @@ -66,6 +73,7 @@

    About Me

    @@ -107,12 +115,12 @@

    HTML, CSS, & Javascript

    Learn more -
    +
    @@ -149,13 +157,14 @@

    Project 3

    - - See more + + - - diff --git a/styles.css b/styles.css index 1bbfaa0..c261ae9 100644 --- a/styles.css +++ b/styles.css @@ -75,6 +75,30 @@ nav ul li a:hover::after{ color: black; } +.social-icons{ + margin: center; + margin-top: 30px; +} + +.social-icons a{ + text-decoration: none; + font-size: 30px; + margin-right: 15px; + color: #fff; + display: inline-block; + transition: transform 0.5s; +} + +.social-icons a:hover{ + color:#ff004f; + transform: translateY(-5px); +} + +.btn.btn2{ + display:inline-block; + background: #ff004f; +} + /*--About--*/ #about{ padding: 80px 0; @@ -292,4 +316,17 @@ nav ul li a:hover::after{ .btn:hover{ background: #ff004f; -} \ No newline at end of file +} + +.copyright{ + width: 100%; + text-align: center; + padding: 25px 0; + background: #2b2b2b; + font-weight: 300; + margin-top: 20px; +} + +.copyright i{ + color: red; +}