105 lines
1.9 KiB
CSS
105 lines
1.9 KiB
CSS
|
body {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
height: 90vh;
|
||
|
background-color: #e5e5e5;
|
||
|
font-family: Arial, sans-serif;
|
||
|
}
|
||
|
.main-container {
|
||
|
width: 700px;
|
||
|
height: 700px;
|
||
|
border-color: antiquewhite;
|
||
|
background-color: white;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
text-align: center;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
.profile-header {
|
||
|
width: 700px;
|
||
|
height: 150px;
|
||
|
border-color: antiquewhite;
|
||
|
background-color: #0088cc;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
form {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.columns {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: flex-start;
|
||
|
gap: 20px;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.column {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
}
|
||
|
.add {
|
||
|
background-image: url("/pics/add_photo.svg");
|
||
|
background-size: cover;
|
||
|
width: 30px;
|
||
|
height: 30px;
|
||
|
border: none;
|
||
|
cursor: pointer;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
.image-button:hover {
|
||
|
opacity: 0.8;
|
||
|
}
|
||
|
|
||
|
.image-button:active {
|
||
|
transform: scale(0.95);
|
||
|
}
|
||
|
#login {
|
||
|
font-family: Arial, sans-serif;
|
||
|
font-size:16px;
|
||
|
width: 150px;
|
||
|
height: 20px;
|
||
|
border-radius: 10px;
|
||
|
border-color: #2F4F4F;
|
||
|
}
|
||
|
#username {
|
||
|
font-family: Arial, sans-serif;
|
||
|
font-size:16px;
|
||
|
width: 150px;
|
||
|
height: 20px;
|
||
|
margin-bottom: 1px;
|
||
|
margin-top: 50px;
|
||
|
border-radius: 10px;
|
||
|
border-color: #2F4F4F;
|
||
|
}
|
||
|
#bio {
|
||
|
height: 150px;
|
||
|
width: 500px;
|
||
|
padding: 10px;
|
||
|
box-sizing: border-box;
|
||
|
font-family: Arial, sans-serif;
|
||
|
font-size:14px;
|
||
|
text-align: left;
|
||
|
vertical-align: top;
|
||
|
margin-bottom: 5px;
|
||
|
}
|
||
|
.save {
|
||
|
cursor:pointer;
|
||
|
font-size: 16px;
|
||
|
border-radius: 15px;
|
||
|
border-color: #2F4F4F;
|
||
|
height: 40px;
|
||
|
color: white;
|
||
|
background-color: #0088cc;
|
||
|
width: 150px;
|
||
|
}
|
||
|
.avatar {
|
||
|
border-radius: 50%;
|
||
|
object-fit: cover;
|
||
|
}
|