You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
578 B
CSS
35 lines
578 B
CSS
2 years ago
|
.form {
|
||
|
display: grid;
|
||
|
grid-template-columns: fit-content(30px) 1fr;
|
||
|
grid-row-gap: var(--text-padding);
|
||
|
grid-column-gap: var(--text-padding);
|
||
|
}
|
||
|
|
||
|
.form textarea {
|
||
|
min-height: 160px;
|
||
|
resize: none;
|
||
|
}
|
||
|
|
||
|
.form button[type="submit"],
|
||
|
.form .status{
|
||
|
grid-column: 1 / -1;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.form input,
|
||
|
.form textarea,
|
||
|
.form button[type="submit"] {
|
||
|
color: white;
|
||
|
background: var(--page-background);
|
||
|
border: none;
|
||
|
box-sizing: border-box;
|
||
|
padding: 4px;
|
||
|
height: 32px;
|
||
|
width: 100%;
|
||
|
box-shadow: none;
|
||
|
}
|
||
|
|
||
|
.form button[type="submit"] {
|
||
|
cursor: pointer;
|
||
|
}
|