feat: create home page

This commit is contained in:
2024-12-21 13:58:35 -03:00
parent c5cd92a9c7
commit 8c41336029
6 changed files with 68 additions and 8 deletions

View File

@@ -0,0 +1,27 @@
.grid-container {
display: grid;
grid-template-columns: repeat(4, 2fr);
gap: 20px;
max-width: 1200px; /* Define a largura máxima do grid */
margin: 0 auto; /* Centraliza o grid na página */
}
.card {
width: 420px;
height: 420px;
background-color: #2b376e;
border-radius: 15px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
text-align: center;
line-height: 30px; /* Centraliza o texto verticalmente */
font-size: 20px;
font-weight: bold;
padding: 10px;
color: #333;
transition: transform 0.2s;
}
.card:hover {
transform: scale(1.05);
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}