snort/src/pages/ProfilePage.css

42 lines
663 B
CSS
Raw Normal View History

2022-12-27 23:46:13 +00:00
.profile {
display: flex;
}
.profile > div:last-child {
flex-grow: 1;
margin-left: 10px;
}
2022-12-28 14:51:33 +00:00
.profile .avatar {
2022-12-29 22:23:41 +00:00
width: 256px;
height: 256px;
2022-12-28 14:51:33 +00:00
background-size: contain;
cursor: pointer;
2022-12-29 22:23:41 +00:00
border-radius: 10px;
2022-12-27 23:46:13 +00:00
}
2022-12-28 14:51:33 +00:00
.profile .avatar .edit {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
opacity: 0;
background-color: black;
}
.profile .avatar .edit:hover {
opacity: 0.5;
2022-12-29 15:21:03 +00:00
}
@media(max-width: 720px) {
.profile {
flex-direction: column;
align-items: center;
}
.profile > div:last-child {
margin: 0;
width: 100%;
}
}