Dashboard CSS
por 1935811
—
última modificação
21/04/2023 16h59
Arquivo CSS
dashboard.css — 0 KB
Conteúdo do arquivo
* { box-sizing: border-box; font-family: Arial, sans-serif; margin: 0; padding: 0; } .dashboard { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; height: 100vh; background-color: #f2f2f2; } .card { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 250px; height: 250px; margin: 20px; padding: 20px; background-color: blue; box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); border-radius: 10px; transition: transform 0.3s ease-in-out; } .card:hover { transform: scale(1.05); } h1 { font-size: 2em; text-align: center; margin-bottom: 20px; } h2 { font-size: 1.5em; margin-bottom: 10px; color: var(--tertiary-color); } .number { font-size: 2em; font-weight: bold; }