45 lines
No EOL
615 B
CSS
45 lines
No EOL
615 B
CSS
.field, .new-field {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.button {
|
|
padding: 0.75rem;
|
|
margin: 0.2rem;
|
|
i {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.user-fields {
|
|
|
|
}
|
|
|
|
.title {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
display: inline-block;
|
|
}
|
|
|
|
.input[disabled] {
|
|
color: color-mix(in srgb, var(--font-color) 50%, transparent);
|
|
}
|
|
|
|
.avatar {
|
|
border-radius: 8px;
|
|
object-fit: cover;
|
|
width: 5em;
|
|
height: 5em;
|
|
}
|
|
|
|
.banner {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
object-fit: cover;
|
|
aspect-ratio: 21/9;
|
|
border-radius: 1rem;
|
|
} |