Красивое боковое меню с hover эффектом

Красивое боковое меню с hover эффектом

Тема в разделе Веб-разработка создана пользователем Intermori
Intermori Автор темы
HTML:
<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
  <title>Menu</title>
  <link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
  <link rel="stylesheet" href="./style.css">

</head>
<body>
<aside>
  <p>Разделы</p>
  <a href="#">
    <i class="fa fa-code" aria-hidden="true"></i>
    Кодинг
  </a>
  <a href="#">
    <i class="fa fa-wrench " aria-hidden="true"></i>
    ПО и Софт
  </a>
  <a href="#">
    <i class="fa fa-comments" aria-hidden="true"></i>
    Общение
  </a>
  <a href="#">
    <i class="fa fa-gamepad" aria-hidden="true"></i>
    Игры
  </a>
  <a href="#">
    <i class="fa fa-shopping-cart " aria-hidden="true"></i>
    Покупка/Продажа
  </a>
  <a href="#">
    <i class="fa fa-briefcase" aria-hidden="true"></i>
    Работа
  </a>
</aside>
</body>
</html>

CSS:
aside {
  color: #fff;
  width: 250px;
  padding-left: 20px;
  height: 100vh;
  background-image: linear-gradient(30deg , #4776E6, #8E54E9);
  border-top-right-radius: 80px;
}

aside a {
  font-size: 12px;
  color: #fff;
  display: block;
  padding: 12px;
  padding-left: 30px;
  text-decoration: none;
  -webkit-tap-highlight-color:transparent;
}

aside a:hover {
  color: #b03ffb;
  background: #fff;
  outline: none;
  position: relative;
  background-color: #fff;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

aside a i {
  margin-right: 5px;
}

aside a:hover::after {
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: 100%;
  right: 0;
  height: 35px;
  width: 35px;
  border-bottom-right-radius: 18px;
  box-shadow: 0 20px 0 0 #fff;
}

aside a:hover::before {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 38px;
  right: 0;
  height: 35px;
  width: 35px;
  border-top-right-radius: 18px;
  box-shadow: 0 -20px 0 0 #fff;
}

aside p {
  margin: 0;
  padding: 40px 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 100%;
  height: 100vh;
  margin: 0;
}


конечно можно ещё пару разделов добавить, но это уже ваш выбор

Сверху