This commit is contained in:
2025-09-17 23:59:13 +03:00
parent d9969e1394
commit 5f55ff45db
2 changed files with 50 additions and 0 deletions

View File

@@ -1436,3 +1436,38 @@ body {
.footer_go_top:hover {
opacity: 1;
}
/* ----------------------------------------BURGER MENU------------------------------------------------------- */
.burger {
display: none;
}
/* ----------------------------------------MEDIA--------------------------------------------------- */
@media (max-width: 1100px) {
.burger {
display: block;
position: absolute;
top: 30px;
right: 15px;
}
.burger span {
display: block;
height: 4px;
width: 30px;
background-color: #424551;
border-radius: 3px;
margin: 4px 0px;
}
.burger::before,
.burger::after {
content: "";
display: block;
height: 4px;
width: 30px;
background-color: #424551;
border-radius: 3px;
}
.header_top {
position: absolute;
}
}