Files
glm-id-card-generator/src/components/EmployeeCard.css
T
2026-06-30 12:24:04 -04:00

67 lines
1.1 KiB
CSS

body {
margin: 0;
background: #f5f5f5;
font-family: Arial, sans-serif;
}
.page {
padding: 40px;
}
.employee-card {
width: 350px;
max-width: 100%;
margin: auto;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}
.header {
color: white;
text-align: center;
padding: 20px;
font-size: 28px;
font-weight: bold;
}
.content {
padding: 30px;
text-align: center;
}
.label {
margin-top: 16px;
color: #666;
font-size: 14px;
}
.value {
font-size: 18px;
font-weight: bold;
}
.employee-photo {
width: 170px;
height: 170px;
border-radius: 50%;
object-fit: cover;
display: block;
margin: 0 auto 25px;
border: 4px solid #e5e5e5;
}
.employee-photo-placeholder {
width: 170px;
height: 170px;
border-radius: 50%;
margin: 0 auto 25px;
background: #f0f0f0;
color: #777;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
border: 4px solid #e5e5e5;
}