Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

User:BakiDance/citizen.css: Difference between revisions

No edit summary
No edit summary
Line 1: Line 1:
.profile-header {
background: red;
}
.profile-avatar {
  border: 4px solid var(--color-surface-0);
  width: fit-content;
  background: var(--color-surface-0);
  position: relative;
  left: 5%;
}
.profile-avatar img {
.profile-avatar img {
   border-radius: 8px;
   border-radius: 8px;
Line 4: Line 16:
}
}
.profile-avatar img:hover {
.profile-avatar img:hover {
   transform: scale(1.03);
   transform: scale(1.02);
}
}

Revision as of 05:18, 23 April 2023

.profile-header {
background: red;
}

.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);
}