|
|
| (16 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| .profile-header {
| |
| position: relative;
| |
| padding: 15px;
| |
| background: var(--color-surface-1);
| |
| border-radius: 8px;
| |
| box-shadow: 0 3px 6px rgba(0,0,0,0.04),0 3px 6px rgba(0,0,0,0.0575);
| |
| font-size: 0.875rem;
| |
| }
| |
|
| |
|
| .profile-avatar {
| |
| border: 4px solid var(--color-surface-0);
| |
| width: fit-content;
| |
| background: var(--color-surface-0);
| |
| position: relative;
| |
| left: 5%;
| |
| }
| |
|
| |
| .profile-avatar img {
| |
| border-radius: 8px;
| |
| transition: transform 250ms cubic-bezier(0.215,0.61,0.355,1);
| |
| }
| |
| .profile-avatar img:hover {
| |
| transform: scale(1.02);
| |
| }
| |