Files
esercizi-web/javascript/JS_Esercizi 08 - DOM+/02_card_profilo/style.css
2026-02-05 01:30:42 +01:00

94 lines
1.7 KiB
CSS

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Stesso font dashboard */
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); /* Stesso sfondo dashboard */
min-height: 100vh;
margin: 0;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #2c3e50;
}
form {
background: #ecf0f1;
padding: 20px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
width: 400px;
}
.form-group {
margin-bottom: 15px;
text-align: left;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.form-group input {
width: 90%;
padding: 8px;
border: 1px solid #bdc3c7;
border-radius: 5px;
}
button {
background: #3498db;
color: white;
border: none;
padding: 10px 20px;
border-radius: 8px;
cursor: pointer;
font-weight: bold;
transition: background 0.2s ease;
}
button:hover {
background: #2980b9;
}
ul {
list-style-type: none;
padding: 0;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 10px;
width: 400px;
}
.card {
background: white;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
width: 190px;
text-align: center;
transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}
.card:hover {
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
transform: scale(1.05);
}
.card > * {
margin: 10px;
padding: 10px;
}
.card h3 {
background: linear-gradient(to right, #667eea, #764ba2);
color: white;
padding: 30px 5px;
border-radius: 5px;
}
.card p {
font-size: 0.9rem;
color: #34495e;
}