mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
62 lines
1.0 KiB
CSS
62 lines
1.0 KiB
CSS
.centered-links {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
:last-child {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
.text-rule {
|
|
display: flex;
|
|
align-items: center;
|
|
text-align: center;
|
|
color: var(--secondary);
|
|
}
|
|
|
|
.text-rule::before, .text-rule::after {
|
|
content: '';
|
|
flex: 1;
|
|
border-bottom: 1px solid var(--secondary);
|
|
}
|
|
|
|
.text-rule:not(:empty)::before {
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.text-rule:not(:empty)::after {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.username-input {
|
|
display: flex;
|
|
padding: 0.5em;
|
|
margin-bottom: 0.5em;
|
|
line-height: 1;
|
|
|
|
border-radius: var(--border-radius-sm);
|
|
border: 2px solid var(--secondary);
|
|
|
|
&:has(input:focus-visible) {
|
|
outline: 2px solid var(--c1);
|
|
border-color: transparent;
|
|
}
|
|
|
|
input {
|
|
flex: 1;
|
|
padding: 0;
|
|
margin: 0;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
span {
|
|
flex: 0;
|
|
color: var(--secondary);
|
|
|
|
&:first-of-type {
|
|
margin-inline-end: 0.5em;
|
|
}
|
|
}
|
|
}
|