Add files via upload

This commit is contained in:
Sam 2023-04-27 20:53:06 +03:00 committed by GitHub
parent fe2f31ceeb
commit 2b7e8c4967
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="menu-icon">
<span></span>
<span></span>
<span></span>
</div>
</body>
</html>

View File

@ -0,0 +1,45 @@
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Cairo", sans-serif;
}
.menu-icon {
margin: 60px auto;
width: 40px;
height: 14px;
cursor: pointer;
position: relative;
}
.menu-icon span {
background-color: black;
height: 4px;
position: absolute;
width: 100%;
left: 0;
transition: all 0.3s ease;
}
.menu-icon span:first-child {
top: -5px;
}
.menu-icon span:nth-child(2) {
top: 4px;
}
.menu-icon span:last-child {
top: 13px;
}
.menu-icon:hover span:nth-child(2) {
opacity: 0;
}
.menu-icon:hover span:first-child,
.menu-icon:hover span:last-child {
top: 6px;
background-color: red;
}
.menu-icon:hover span:first-child {
transform: rotate(45deg);
}
.menu-icon:hover span:last-child {
transform: rotate(-45deg);
}