mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 05:25:40 +00:00
68 lines
1.1 KiB
CSS
68 lines
1.1 KiB
CSS
.grid-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, 2fr);
|
|
gap: 10px;
|
|
max-width: 95%;
|
|
margin: 40px;
|
|
}
|
|
|
|
|
|
.card-comanda {
|
|
width: 80%;
|
|
gap: 3px;
|
|
background: var(--main-gradient);
|
|
border-radius: 5px;
|
|
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
|
|
text-align: center;
|
|
line-height: 12px;
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.card-comanda:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
input, textarea {
|
|
width: 95%;
|
|
max-width: 95%;
|
|
padding: 8px;
|
|
margin-top: 5px;
|
|
border-radius: 5px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
.grid-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.card-comanda {
|
|
width: 31%;
|
|
gap: 3px;
|
|
flex-wrap: wrap;
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.card-comanda:hover {
|
|
transform: scale(1);
|
|
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
}
|