snort/src/pages/ProfilePage.css

65 lines
965 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;
}
2023-01-04 10:47:41 +00:00
.profile p {
white-space: pre-wrap;
}
2023-01-06 15:22:02 +00:00
.profile .name {
align-items: flex-start;
}
.profile .name h2 {
margin: 0;
}
2023-01-10 07:09:09 +00:00
.profile .avatar-wrapper {
margin: auto 10px;
2023-01-10 07:09:09 +00:00
}
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;
2023-01-09 21:45:03 +00:00
border-radius: 100%;
2022-12-27 23:46:13 +00:00
}
2023-01-10 07:09:09 +00:00
.profile .details {
margin-top: auto;
margin-bottom: auto;
overflow: hidden;
2023-01-10 07:09:09 +00:00
}
.profile .website {
margin-bottom: 10px;
color: var(--highlight);
2023-01-10 07:09:09 +00:00
}
.profile .website::before {
content: '🔗 ';
font-size: 10px;
}
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%;
}
}
@media(max-width: 420px) {
.profile .name { flex-direction: column; }
.profile .name .btn {
margin-top: 5px;
}
}