Spaces:
Runtime error
Runtime error
File size: 1,159 Bytes
b9a69cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
.container-cards {
background-color: #f2f2f2;
position: relative;
max-width: 1200px;
margin: 50px auto;
border-radius: 10px;
box-shadow:
-3px 0 5px rgba(0, 0, 0, 0.3),
3px 0 5px rgba(0, 0, 0, 0.3);
}
.card-body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
background-color: var(--secondary-blue);
border-radius: 10px;
height: 160px;
width: 160px;
padding: 10px;
}
.card-body i {
font-size: 40px;
color: var(--mineral-green);
margin-bottom: 20px;
}
.card-body:hover {
outline: 5px solid var(--mineral-green);
}
.cards-home-page {
display: grid;
}
.cards-home-page a {
text-decoration: none;
color: #fff;
}
.card-subtitle {
color: white;
font-weight: 600;
padding: 0 2px 0 0;
;
}
.header-page-main {
padding-left: 10px;
}
.rows-data {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: 270px;
gap: 10px;
place-items: center;
padding-top: 50px;
}
|