60 lines
No EOL
808 B
CSS
60 lines
No EOL
808 B
CSS
.field, .new-field {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.loading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-top: 25vh;
|
|
}
|
|
|
|
.button {
|
|
padding: 0.75rem;
|
|
margin: 0.2rem;
|
|
i {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.user-fields {
|
|
|
|
}
|
|
|
|
.language-label {
|
|
text-wrap: nowrap;
|
|
}
|
|
|
|
.title {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
display: inline-block;
|
|
}
|
|
|
|
.input[disabled] {
|
|
color: color-mix(in srgb, var(--font-color) 50%, transparent);
|
|
}
|
|
|
|
.input.alt-text {
|
|
resize: none;
|
|
}
|
|
|
|
.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;
|
|
} |