feat: create tabs page orders

This commit is contained in:
2025-01-10 16:43:22 -03:00
parent 0e096207a6
commit b84fd3bb69
15 changed files with 270 additions and 2 deletions

View File

@@ -0,0 +1,84 @@
/* .grid-container {
display: grid;
grid-template-columns: repeat(3, 2fr);
gap: 20px;
max-width: 800px;
margin: 0 auto;
}
.card {
width: 120px;
height: 120px;
background-color: #f2f2f2;
border-radius: 15px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
text-align: center;
line-height: 120px;
font-size: 20px;
font-weight: bold;
color: #333;
transition: transform 0.2s;
}*/
.m-card {
/* width: 50px; */
height: 100%;
background-color: #f2f2f2;
border-radius: 10px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
text-align: center;
line-height: 50px;
font-size: 10px;
font-weight: bold;
color: #000000;
transition: transform 0.2s;
padding: 15px;
margin-top: 15px;
}
h4{
color: black;
}
/*
.card:hover {
transform: scale(1.05);
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}
.m-card:hover {
transform: scale(1.05);
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}*/
.tab {
overflow: auto;
margin-bottom: 0px;
/* border: 1px solid #ccc; */
/* background-color: #f1f1f1; */
}
/* Estilo para cada aba */
.tab button {
width: 23%;
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 10px 10px;
transition: 0.3s;
}
/* Estilo para a aba ativa */
.tab button.active {
background-color: #4446d6;
}
/* Estilo para o conteúdo das abas */
.tabcontent {
/* display: none; */
padding: 6px 12px;
/* border: 1px solid #ccc; */
/* border-top: none; */
}