Witam,
mam menu boczne i one wgl nie odziałowuje na zawartość strony, chodzi mi o to że mam na stronie np zdjęcia, i jak otwieram menu boczne, zamiast przesunąć te zdjęcia na bok to nachodzi na nie, a chciałbym żeby zdjęcia czy menu jakoś odziaływało na siebie :/ pomocy!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="styles.css">
<title>
Rozsuwane menu boczne w samym CSS
</title>
</head>
<body>
<nav class="site-nav">
<button class="side-menu-trigger">Menu</button>
<aside class="side-menu">
<ul>
<li>
<a href="">
About us
</a>
</li>
<li>
<a href="">
Some other thing
</a>
</li>
<li>
<a href="">
Yet another one
</a>
</li>
<li>
<a href="">
Subscribe!
</a>
</li>
<li>
<a href="">
Foo
</a>
</li>
</ul>
</aside>
</nav>
</body>
</html>
body {
padding; 0;
margin: 0;
overflow: hidden;
background: #696e9e;
}
.site-nav {
display: flex;
justify-content: flex-end;
align-items: center;
padding: 10px;
box-sizing: border-box;
height: 20px;
width: 100%;
background: #4a4d6d;
}
.side-menu-trigger {
border: 0;
border-radius: 5px;
background: #ffffff;
}
.side-menu {
display: flex;
box-sizing: border-box;
position: absolute;
height: 100%;
width: 300px;
top: 20px;
right: -300px;
padding: 0;
background: #34b399;
transition: 0.3s transform ease-in-out;
}
.side-menu ul {
position: absolute;
display: flex;
height: calc(100% - 20px);
flex-wrap: wrap;
margin: 0 10px;
padding: 0;
list-style-type: none;
align-content: flex-start
}
.side-menu ul li {
display: flex;
height: 30px;
background: #ffffff;
flex-basis: 100%;
margin-top: 20px;
color: #696e9e;
border-radius: 5px;
overflow: hidden;
}
.side-menu ul li a {
display: flex;
padding: 10px;
align-items: center;
width: 100%;
height: 100%;
background: #ffffff;
text-decoration: none;
box-sizing: border-box;
}
.side-menu-trigger:focus ~ .side-menu, .side-menu:hover {
transform: translateX(-300px);
}