<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style/style.css">
<title>Belpromstandart</title>
</head>
<body>
<div class="test">+</div>
<div class="wrapper">
<div class="wrapper__questions">
<div class="questions__circle">
<div class="cross menu-icon"></div>
</div>
<div class="questions__circle">
<div class="cross menu-icon"></div>
</div>
<div class="questions__circle">
<div class="cross menu-icon"></div>
</div>
</div>
</div>
<script src="./script/script.js"></script>
</body>
</html>
* {
box-sizing: border-box;
}
.questions__circle {
border: 1px solid #E41579;
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 45px;
margin-left: 241px;
}
.menu-icon {
width: 30px;
height: 5px;
background-color: #E41579;
}
.menu-icon::before {
content: '';
display: block;
width: 30px;
height: 5px;
background-color: #E41579;
transform: rotate(90deg);
}
Есть крестик на странице созданный при помощи .menu-icon и .menu-icon::before , как сделать ,что бы весь крестик отбрасывал тень ?