snort/src/pages/ProfilePage.css

48 lines
781 B
CSS
Raw Normal View History

2022-12-27 23:46:13 +00:00
.profile {
2023-01-03 16:55:51 +00:00
align-items: flex-start;
2022-12-27 23:46:13 +00:00
}
.profile > div:last-child {
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-30 14:01:51 +00:00
background-size: cover;
2022-12-28 14:51:33 +00:00
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
}
2023-01-03 12:06:53 +00:00
.profile .editor textarea {
resize: vertical;
width: calc(100% - 30px);
max-height: 300px;
min-height: 60px;
}
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%;
}
}