2022-12-10 12:14:48 +03:00
|
|
|
#account-container.skeleton {
|
|
|
|
color: var(--outline-color);
|
|
|
|
}
|
|
|
|
|
2022-12-17 19:38:19 +03:00
|
|
|
#account-container header {
|
2022-12-10 12:14:48 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#account-container .note {
|
|
|
|
font-size: 95%;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
2022-12-19 12:02:01 +03:00
|
|
|
#account-container .note:not(:has(p)) {
|
|
|
|
/* Some notes don't have <p> tags, so we need to add some padding */
|
|
|
|
padding: 1em 0;
|
|
|
|
}
|
2022-12-10 12:14:48 +03:00
|
|
|
|
|
|
|
#account-container .stats {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2022-12-17 19:38:19 +03:00
|
|
|
column-gap: 16px;
|
|
|
|
row-gap: 4px;
|
2022-12-12 04:50:15 +03:00
|
|
|
opacity: 0.75;
|
2022-12-17 19:38:19 +03:00
|
|
|
font-size: 90%;
|
2022-12-10 12:14:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#account-container .actions {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
justify-content: space-between;
|
|
|
|
min-height: 2.5em;
|
|
|
|
}
|
|
|
|
#account-container .actions button {
|
|
|
|
align-self: flex-end;
|
2022-12-17 19:38:19 +03:00
|
|
|
}
|
2022-12-18 07:21:57 +03:00
|
|
|
|
|
|
|
#account-container .profile-metadata {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 12px;
|
|
|
|
}
|
|
|
|
#account-container .profile-field {
|
|
|
|
flex-grow: 1;
|
|
|
|
font-size: 90%;
|
|
|
|
background-color: var(--bg-faded-color);
|
|
|
|
padding: 12px;
|
|
|
|
border-radius: 8px;
|
|
|
|
filter: saturate(0.75);
|
|
|
|
line-height: 1.25;
|
|
|
|
}
|
|
|
|
|
|
|
|
#account-container .profile-field b {
|
|
|
|
font-size: 90%;
|
|
|
|
color: var(--text-insignificant-color);
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2022-12-19 12:02:01 +03:00
|
|
|
#account-container .profile-field b .icon {
|
|
|
|
color: var(--green-color);
|
|
|
|
}
|
2022-12-18 07:21:57 +03:00
|
|
|
#account-container .profile-field p {
|
|
|
|
margin: 0;
|
|
|
|
}
|