Version 48

This commit is contained in:
2024-09-17 23:26:37 +02:00
parent 7e773c5ebd
commit 3271cff510
6 changed files with 155 additions and 50 deletions

View File

@@ -44,7 +44,7 @@
.menu-container .button.expand span svg:nth-child(1){opacity:0;}
.menu-container .button span svg:nth-child(2){opacity:0;}
.menu-container .button.expand span svg:nth-child(2){opacity:1;}
ul{
#ula{
list-style: none;
position: absolute;
top: 65px;
@@ -58,7 +58,7 @@ ul{
box-shadow: 0 3px 6px rgba(0,0,0,.3);
padding-inline-start: 0px;
}
ul:before{
#ula:before{
position: absolute;
content: '';
width: 20px;
@@ -69,26 +69,26 @@ ul:before{
transform: rotate(45deg);
z-index: -1;
}
ul li{
#ula li{
line-height: 35px;
cursor: pointer;
border-right: 1px solid rgba(255,255,255,.1);
width: 25%;
}
ul li:hover:first-child{
#ula li:hover:first-child{
border-radius: 10px 0 0 10px;
}
ul li:hover:last-child{
#ula li:hover:last-child{
border-radius: 0 10px 10px 0;
}
ul li:hover{
#ula li:hover{
box-shadow: inset 0 0 5px #33ff33,
inset 0 0 10px #66ff66;
}
ul li:last-child{
#ula li:last-child{
border-right: none;
}
ul li a{
#ula li a{
display: flex;
justify-content: center;
align-items: center;
@@ -98,11 +98,11 @@ ul li a{
fill: #fff;
text-decoration: none;
}
ul li a svg{
#ula li a svg{
width: 50%;
height: 50%;
color: #fff;
}
ul li:hover a svg{
#ula li:hover a svg{
color: #44dd44;
}