feat: menu dropdown in navbar

This commit is contained in:
2025-01-13 16:52:34 -03:00
parent 956841ef2a
commit 3dae764fc8
5 changed files with 87 additions and 26 deletions

View File

@@ -17,7 +17,7 @@
border-radius: 10px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
text-align: center;
line-height: 30px; /* Centraliza o texto verticalmente */
line-height: 30px;
font-size: 20px;
font-weight: bold;
padding: 10px;
@@ -25,10 +25,7 @@
transition: transform 0.2s;
}
.card:hover {
transform: scale(1.05);
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 730px) {
@@ -38,13 +35,11 @@
width: 99%;
grid-template-columns: repeat(1, 1fr);
gap: 20px;
/* max-width: 1200px; */
margin: 5px;
}
.card {
width: 95%;
/* height: 80%; */
background-color: #2b376e;
text-align: center;
line-height: 30px;
@@ -54,4 +49,6 @@
color: #333;
transition: transform 0.2s;
}
}