txtdot/static/form.css

64 lines
912 B
CSS
Raw Normal View History

2023-08-21 16:02:52 +03:00
.input-grid {
display: grid;
/* 2 columns: auto width, min-content width */
grid-template-columns: auto min-content;
/* gap: row column */
gap: 0.5rem 0.25rem;
width: fit-content;
}
.input-row {
display: flex;
flex-direction: row;
align-items: center;
2023-08-29 19:01:25 +03:00
flex-wrap: wrap;
gap: 0.25rem 0.75rem;
2023-08-21 16:02:52 +03:00
}
.input {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.25rem;
}
label {
font-size: 0.9rem;
}
#url,
#search {
2023-08-21 16:02:52 +03:00
width: 100%;
height: 100%; /* shrink to #submit height */
2023-08-21 16:02:52 +03:00
outline: none;
border: 0;
border-bottom: 0.125rem solid var(--fg2);
background: var(--bg);
color: var(--fg);
font-size: 1rem;
}
#url::placeholder {
color: var(--fg2);
opacity: 1;
}
#submit {
font-size: 1rem;
}
select {
border: 0;
border-bottom: 0.125rem solid var(--accent);
background: var(--bg);
color: var(--fg);
font-weight: 500;
font-size: 0.9rem;
}