You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
1.3 KiB
91 lines
1.3 KiB
body{
|
|
font-family: Arial,sans-serif;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-color: beige;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.container{
|
|
background-color: #faf4f5;
|
|
padding: 20px;
|
|
border-radius: 15%;
|
|
width: 100%;
|
|
height: 100%;
|
|
max-width: 500px;
|
|
max-height: 450px;
|
|
|
|
}
|
|
|
|
header h1{
|
|
display: flex;
|
|
text-align: center;
|
|
color: #333;
|
|
}
|
|
|
|
.profile-section{
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.profile-box{
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.profile{
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
background-color: #ddd;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
|
|
|
|
|
}
|
|
|
|
.profile img{
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.profile-info .stat{
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.profile-info label{
|
|
font-weight: bold;
|
|
}
|
|
|
|
.profile-info span{
|
|
font-size: 16px;
|
|
color: #555;
|
|
}
|
|
|
|
.actions{
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
button{
|
|
background-color: #28a745;
|
|
color: #fff;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
margin: 5px 0;
|
|
border-radius: 5px;
|
|
cursor:pointer;
|
|
}
|
|
|
|
button:hover{
|
|
background-color: #218838;
|
|
}
|
|
|
|
|