mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-24 15:08:44 -05:00
33 lines
618 B
CSS
33 lines
618 B
CSS
.logInButton {
|
|
display: flex;
|
|
height: var(--item-size);
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0.5rem;
|
|
border: 2px solid;
|
|
border-color: var(--bg-lighter);
|
|
background-color: transparent;
|
|
border-radius: var(--rounded);
|
|
color: inherit;
|
|
cursor: pointer;
|
|
font-size: var(--fonts-xs);
|
|
font-weight: var(--bold);
|
|
gap: var(--s-2);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.logInButton > svg {
|
|
width: 1rem;
|
|
}
|
|
|
|
.logInButton:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
.avatar {
|
|
width: var(--item-size);
|
|
min-width: var(--item-size);
|
|
height: var(--item-size);
|
|
border-radius: var(--rounded);
|
|
}
|