Aquelas divisões como se fossem "Traçinhos" não aparecem.
CSS:
$purple: #a050ab;
$light-grey: #eaeaeb;
$dark-grey: #464646;
.header {
font-family: Arial, Helvetica, sans-serif;
}
.header__logo {
text-align: center;
}
.header__logo
.header__img {
max-width: 350px;
}
.header__menu
.menu__list {
display: flex;
justify-content: center;
border-top: 1px solid $light-grey;
border-bottom: 1px solid $light-grey;
margin-left: auto;
margin-right: auto;
width: 80%;
padding: 20px 0;
}
.header__menu
.menu__list
.menu__links {
position: relative;
}
.header__menu
.menu__list
.menu__links:not(:last-child)::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
right: -3px;
margin: auto;
height: 15px;
width: 1px;
background-color: $light-grey;
}
.header__menu
.menu__list
.menu__links
.menu__link {
padding: 0 25px;
color: $dark-grey;
}
.header__menu
.menu__list
.menu__links
.menu__link:hover {
color: $purple;
}
HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gatito Petshop</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header class="header">
<figure class="header__logo">
<img class="header__img" src="assets/img/logo.png" alt="logo">
</figure>
<nav class="header__menu menu">
<ul class="menu__list">
<li class="menu__links">
<a href="index.html" class="menu__link">Página inicial</a>
<a href="index.html" class="menu__link">Sobre nós</a>
<a href="index.html" class="menu__link">Cães</a>
<a href="index.html" class="menu__link">Gatos</a>
<a href="index.html" class="menu__link">Pássaros</a>
</li>
</ul>
</nav>
</header>
</body>
</html>