How can I make the footer section display the links all next to each other?

Viewed 18

I want the bottom links that start with Github-Instagram to all be on the same line. I have played around with the display and haven't been successful. Can anyone tell me what to do?

I also have a problem with the word Orelso not resizing properly. Any help would be appreciated.

Thank you in advance for any help. e

/* Start Nav */
    .nav {
        display: flex;
        justify-content: flex-end; /* moves the nav to the right */
        position: fixed; /* means it stays when scrolled */
        top: 0;
        left: 0;
        width: 100%;
        height: 90px;
        background-color: #F0E5D3;
    }

    .nav, ul, li {
        list-style: none; /* makes dots go away */
        padding : 0 2px 0 2px;
    }

    .nav-list {
        display: flex; /* makes the nav bar links go side by side */
        margin-right: 4rem;
    }

    .nav-list a {
        display: block;
        font-family: 'Taviraj', serif;
        font-weight: 400;
        color: #6A6A6A;
        text-decoration: none;
        font-size: 25px;
        padding: 5px;
    }

    .nav-list a:hover {
        background: #A5AA93;
        border-radius: 15px 50px;
        padding: 10px;
    }


/* @media (max-width: 760px){
    .nav {
      justify-content: center;
    }
  
    .nav-list {
      margin: 0 10rem;
    }
  } */
/* End Nav */

/* Start Intro  */
    .intro-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 100vh;
        margin-left: -8px;
        /* color: 6A6A6A; */
        background: rgb(165,170,147);
        background: linear-gradient(90deg, rgba(165,170,147,1) 0%, rgba(156,159,146,1) 64%);
        line-height: 0%;
        font-size: 6rem;
        font-family: 'Taviraj', serif;
        font-weight: 400;
    }
    
    .intro-section > p {
        font-size: 5rem;
        font-weight: 200;
        font-style: italic;
        color: #6A6A6A;
    }

    #namestyle {
        text-decoration: none;
        color: #F3D0B5;
    }

    #namestyle:hover {
        transition-timing-function: ease-out;
        transition:  2s;
        color: #F0E5D3;
    }


/* @media screen and (max-width: 760px){
    h1.a.namestyle {
      font-size: 90px;
    }
  } */
/* End Intro */

/* Start Digital Work */

  .projects-section{
    text-align: center;
    padding: 1rem ;
    background-color: #F0E5D3;
    font-size: 4rem;
        font-weight: 200;
        font-style: italic;
        color: #6A6A6A;
  }

  .projects-section-header{
    max-width: 640px;
    margin: 0 auto 6rem auto;
    border-bottom: 0.2rem solid ;
    color: 6A6A6A;
  }


  /* @media (max-width: 760px) {
    .projects-section-header {
      font-size: 4rem;
    }
  } */

  .projects-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 5rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 6rem;
  }

  /* @media (max-width: 490px) {
    .projects-section {
      padding: 6rem 1rem;
    }

    .projects-grid {
      grid-template-columns: 1fr;
    }
  } */

  .project{
    background: rgb(165,170,147);
    background: linear-gradient(90deg, rgba(165,170,147,1) 0%, rgba(156,159,146,1) 64%);
    box-shadow: 2px 2px 3.5px #6A6A6A;
    border-radius: 2px;
  }

  .code {
    color: rgb(165,170,147);
    transition: color 0.8s ease-out;
  }

  .project:hover .code {
    color: #F3D0B5;
  }

  .project-image {
    height: 190px;
    width: 100%;
    object-fit: cover;
  }

  .project-title {
    font-size: 1.5rem;
    padding: 2rem 0.5rem;
    text-decoration: none;
  }

  #titlestyle {
    text-decoration: none;
    color: #F0E5D3;
}


/** Start More Digital Work Button **/
  .btn{
    display: inline-block;
    border-radius: 15px;
  
  padding: 20px; 
  width: 290px;
  height: 35px; 
    text-decoration: none;
    

  }
  
  .btn-show-all{
    font-size: 2rem;
    background-color: #6A6A6A;
  }
  
  .btn-show-all:hover{
    background-color: grey;
    -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
  }

  #logocolor {
    color: black;
  }
/** End More Digital Work Button **/
/* End Digital Work */

/* Start Contact section */
.contact-section{
    display: flex;
    background: rgb(165,170,147);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    width: 100%;  
  }
  
  .contact-section-header p {
    font-style: italic;
    color: gray;
    cursor: grab;
    line-height: 0%;
  }
  
  .contact-links {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 980px;
    margin-top: 4rem;
    flex-wrap: wrap;
  }
  
  .contact-details {
    font-size: 1.8rem;
    transition: transform 0.3s ease-out;
  }
  
  .contact-details:hover {
    transform: translatey(10px);
  }
/* End Contact section */
<!DOCTYPE html>
<html>
    <link rel="stylesheet" href="index.css">
    <link href="https://fonts.googleapis.com/css?family=Lato:300,700|Taviraj" rel="stylesheet">
    <script src="https://kit.fontawesome.com/15456887b7.js" crossorigin="anonymous"></script>

    <script src=""></script>
    <head>
    <title>Orelso</title>
    </head>


    <!-- Start Nav -->
    <nav id="navbar" class="nav">
        <ul class="nav-list">
            <li><a href="#intro">Intro</a></li>
            <li><a href="#digital">Digital Work</a></li>
            <li><a href="#education">Eductaion</a></li>
            <li><a href="#work">Work History</a></li>
            <li><a href="#volunteer">Volunteer</a></li>
        </ul>
    </nav>
    <!--End Nav -->

    <!-- Start Intro -->
    <section id="intro" class="intro-section">
        <h1>Hello I am <a id="namestyle" href="orelso.html">Orelso</a></h1>
        <p>a web developer</p>
    </section>
    <!-- End Intro -->

    <!-- Start Digital Work -->
    <section id="digital" class="projects-section">
        <h2 class="projects-section-header">Coding Projects</h2>

        <div class="projects-grid">
            <a
            href="https://orelso-drums.netlify.app"
            target=_blank
            class="project project-title"
            id="titlestyle"
            >
            <img
            class="project-image"
            src="https://res.cloudinary.com/orelso/image/upload/v1663843132/PORTFOLIO%201.1/Screenshot_2022-09-22_at_13.38.34_ouo6fk.png"
            alt="project"
            >
            <p class="project-title">
            <span class="code">&lt;</span>
            Drum Kit
            <span class="code">&#47;&gt;</span>
            </p>
            </a>

            <a
            href="https://orelso-pokemonjump.netlify.app"
            target="_blank"
            class="project project-title"
            id="titlestyle"
            >
            <img
            class="project-image"
            src="https://res.cloudinary.com/orelso/image/upload/v1663843575/PORTFOLIO%201.1/Screenshot_2022-09-22_at_13.46.01_dnybkm.png"
            alt="project"
            >
            <p class="project-title">
            <span class="code">&lt;</span>
            Pokemon Jump
            <span class="code">&#47;&gt;</span>
            </p>
            </a>

            <a
            href="https://orelso-calculator.netlify.app"
            target=_blank
            class="project project-title"
            id="titlestyle"
            >
            <img
            class="project-image"
            src="https://res.cloudinary.com/orelso/image/upload/v1663843264/PORTFOLIO%201.1/Screenshot_2022-09-22_at_13.40.42_g8fekh.png"
            alt="project"
            >
            <p class="project-title">
            <span class="code">&lt;</span>
            Calculator
            <span class="code">&#47;&gt;</span>
            </p>
            </a>

            <a
            href="https://orelso-tictactoe.netlify.app"
            target="_blank"
            class="project project-title"
            id="titlestyle"
            >
            <img
            class="project-image"
            src="https://res.cloudinary.com/orelso/image/upload/v1663843781/PORTFOLIO%201.1/Screenshot_2022-09-22_at_13.49.18_ogfzkm.png"
            alt="project"
            >
            <p class="project-title">
            <span class="code">&lt;</span>
            Tic Tac Toe 
            <span class="code">&#47;&gt;</span>
            </p>
            </a>

            <a
            href="https://orelso-magic8ball.netlify.app"
            target="_blank"
            class="project project-title"
            id="titlestyle"
            >
            <img
            class="project-image"
            src="https://res.cloudinary.com/orelso/image/upload/v1663844188/PORTFOLIO%201.1/Screenshot_2022-09-22_at_13.56.18_whbbz6.png"
            alt="project"
            >
            <p class="project-title">
            <span class="code">&lt;</span>
            Magic 8 Ball
            <span class="code">&#47;&gt;</span>
            </p>
            </a>

            <a
            href="https://orelso-digitalclock.netlify.app"
            target="_blank"
            class="project project-title"
            id="titlestyle"
            >
            <img
            class="project-image"
            src="https://res.cloudinary.com/orelso/image/upload/v1663844098/PORTFOLIO%201.1/Screenshot_2022-09-22_at_13.54.45_xmytge.png"
            alt="project"
            >
            <p class="project-title">
            <span class="code">&lt;</span>
            Digital Clock
            <span class="code">&#47;&gt;</span>
            </p>
            </a>

            <a
            href="https://orelso-hangman.netlify.app"
            target="_blank"
            class="project project-title"
            id="titlestyle"
            >
            <img
            class="project-image"
            src="https://res.cloudinary.com/orelso/image/upload/v1663844588/PORTFOLIO%201.1/Screenshot_2022-09-22_at_14.02.57_otfble.png"
            alt="project"
            >
            <p class="project-title">
            <span class="code">&lt;</span>
            Digital Clock
            <span class="code">&#47;&gt;</span>
            </p>
            </a>

            <a
            href="https://orelso-pong.netlify.app"
            target="_blank"
            class="project project-title"
            id="titlestyle"
            >
            <img
            class="project-image"
            src="https://res.cloudinary.com/orelso/image/upload/v1663844713/PORTFOLIO%201.1/Screenshot_2022-09-22_at_14.04.52_i4ganr.png"
            alt="project"
            >
            <p class="project-title">
            <span class="code">&lt;</span>
            Digital Clock
            <span class="code">&#47;&gt;</span>
            </p>
            </a>

            <a
            href="https://orelso-clock.netlify.app"
            target="_blank"
            class="project project-title"
            id="titlestyle"
            >
            <img
            class="project-image"
            src="https://res.cloudinary.com/orelso/image/upload/v1663844803/PORTFOLIO%201.1/Screenshot_2022-09-22_at_14.06.28_jb2psf.png"
            alt="project"
            >
            <p class="project-title">
            <span class="code">&lt;</span>
            Digital Clock
            <span class="code">&#47;&gt;</span>
            </p>
            </a>
        </div>

        <a
        href="https://codepen.io/Orelso"
        class="btn btn-show-all"
        target="_blank"
        id="titlestyle"
        >
        <i class="fa-brands fa-codepen fa-fw" id="logocolor"></i>More Digital Work</a>
    </section>
    <!-- End Digital Work -->

    <!-- Start contact section -->
    <section id="contact" class="contact-section">
        <div class="contact-section-header">
          <h2>Lets make some memorable work together...</h2>
        </div>
        <div class="contact-links">
          <a
            href="https://github.com/Orelso"
            target="_blank"
            class="btn contact-details"
            style="color: black";
            ><i class="fa fa-github" aria-hidden="true"></i>Github</a>
          <a
            href="https://codepen.io/Orelso"
            target="_blank"
            class="btn contact-details"
            style="color: black";
          ><i class="fa-brands fa-codepen fa-fw"></i>Codepen</a>
          <a
            href="orelso25@gmail.com"
            class="btn contact-details"><i class="fas fa-at fa-fw"></i>Mail</a>
          <a
            href="tel: +358 451243334"
            class="btn contact-details"
            ><i class="fas fa-mobile-alt fa-fw"></i>Call</a>
            <a
            href="https://api.whatsapp.com/send?phone=+358451243334&text=Hello,"
            class="btn contact-details"
            style="color: green";
            ><i class="fa fa-whatsapp" aria-hidden="true"></i>Whatsapp</a>
            <a
            href="https://twitter.com/orelsovitam"
            target="_blank"
            class="btn contact-details"
            style="color: #00acee;"><i class="fab fa-twitter fa-fw"></i>Twitter</a>
            <a
            href="https://www.instagram.com/orelso/?hl=en"
            target="_blank"
            class="btn contact-details"
            style="color: purple";

            ><i class="fa fa-instagram" aria-hidden="true"></i>Instagram</a>
        </div>
    </section>
    <!-- End contact section -->





</html>

0 Answers
Related