ev-project
Version:
52 lines (50 loc) • 1.13 kB
CSS
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.profile-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
.profile-card {
background-color: #f4f4f4;
border-radius: 10px;
padding: 30px;
width: 400px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
text-align: center;
color: #333;
}
.profile-info h2 {
margin-bottom: 10px;
color: #5e63ff;
}
.profile-info p {
margin: 8px 0;
font-size: 14px;
}
.profile-info i {
color: #5e63ff;
margin-right: 10px;
}
.edit-btn {
margin-top: 20px;
padding: 10px 20px;
background-color: #66aaff;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
transition: background-color 0.3s;
}
.edit-btn:hover {
background-color: #4080d3;
}