forked from NotNet/gluestick
42 lines
654 B
CSS
42 lines
654 B
CSS
.buttonContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.buttonContainer input:disabled {
|
|
cursor: not-allowed;
|
|
color: var(--fg-dark);
|
|
}
|
|
|
|
.formRow {
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.formRow label {
|
|
display: block;
|
|
font-variant: all-small-caps;
|
|
font-size: 105%;
|
|
}
|
|
|
|
.formRow input {
|
|
padding: 0.5em 1em;
|
|
border: none;
|
|
border-radius: 0.15rem;
|
|
margin: 0.5rem 0;
|
|
width: 250px;
|
|
display: block;
|
|
background: var(--bg-dark);
|
|
}
|
|
|
|
.hint {
|
|
color: var(--fg-dark);
|
|
font-size: 80%;
|
|
transition: color var(--theme-transition);
|
|
}
|
|
|
|
.error {
|
|
color: var(--error);
|
|
font-size: 80%;
|
|
transition: color var(--theme-transition);
|
|
}
|