mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.5 KiB
SCSS
73 lines
1.5 KiB
SCSS
#RecetMenu {
|
|
position: fixed;
|
|
inset-inline-start: 1rem;
|
|
inset-inline-end: 1rem;
|
|
top: 1rem;
|
|
background: #ffffff77;
|
|
backdrop-filter: blur(5px);
|
|
z-index: 88;
|
|
border-radius: var(--xshop-border-radius);
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding-right: 1rem;
|
|
padding-left: 1rem;
|
|
|
|
li {
|
|
display: inline-block;
|
|
|
|
a,a:visited {
|
|
display: block;
|
|
padding: 1rem;
|
|
color: black;
|
|
&:hover{
|
|
color: var(--xshop-secondary);
|
|
}
|
|
}
|
|
&:first-child{
|
|
display: none;
|
|
}
|
|
|
|
}
|
|
}
|
|
.card-link{
|
|
padding: 5px !important;
|
|
margin: 0;
|
|
i{
|
|
font-size: 22px;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*-768px width*/
|
|
@media (max-width: 768px) {
|
|
#RecetMenu{
|
|
ul {
|
|
li {
|
|
display: none ;
|
|
|
|
&:first-child, &:last-child {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|
|
&.show-menu{
|
|
ul{
|
|
li {
|
|
display: flex !important;
|
|
float: none !important;
|
|
|
|
a{
|
|
padding-bottom: 0;
|
|
}
|
|
&:last-child{
|
|
padding-bottom: 1rem;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|