2023-08-17 15:14:01 -07:00
|
|
|
|
section.index-search {
|
2023-01-22 14:03:45 -08:00
|
|
|
|
width: 100%;
|
2023-08-17 15:14:01 -07:00
|
|
|
|
background: var(--white);
|
2023-01-22 14:03:45 -08:00
|
|
|
|
}
|
|
|
|
|
|
2025-05-02 17:03:41 +02:00
|
|
|
|
/* TODO: move to a global file? it’s not only for forms. */
|
|
|
|
|
section.index-search :focus-visible {
|
|
|
|
|
outline: 2px solid var(--white);
|
|
|
|
|
outline-offset: -4px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-17 15:14:01 -07:00
|
|
|
|
section.start a.search-link {
|
|
|
|
|
color: var(--highlight);
|
|
|
|
|
font-size: 2.5em;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
border: 0;
|
|
|
|
|
display: block;
|
2022-11-15 12:57:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-17 15:14:01 -07:00
|
|
|
|
form.index-search-form {
|
2025-05-02 17:49:46 +02:00
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: auto max-content;
|
|
|
|
|
gap: 15px;
|
2023-08-17 15:14:01 -07:00
|
|
|
|
width: 80%;
|
|
|
|
|
max-width: 1000px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 30px 0;
|
2022-11-15 12:57:14 -08:00
|
|
|
|
}
|
|
|
|
|
|
2025-05-02 17:49:46 +02:00
|
|
|
|
form.index-search-form > input,
|
|
|
|
|
form.index-search-form > button {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 60px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
form.index-search-form > input:focus {
|
|
|
|
|
color: var(--white);
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-17 15:14:01 -07:00
|
|
|
|
form.index-search-form > input[type="text"] {
|
|
|
|
|
font: 44px var(--base-type);
|
2023-01-17 15:54:59 -08:00
|
|
|
|
}
|
|
|
|
|
|
2025-05-02 17:49:46 +02:00
|
|
|
|
form.index-search-form > input[type="hidden"] {
|
|
|
|
|
/* This removes it from the grid calculations */
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-17 15:14:01 -07:00
|
|
|
|
form.index-search-form > button {
|
2025-05-02 17:49:46 +02:00
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: auto;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0;
|
2023-08-17 15:14:01 -07:00
|
|
|
|
width: 60px;
|
2025-05-02 17:32:42 +02:00
|
|
|
|
text-transform: uppercase;
|
2023-01-22 14:03:45 -08:00
|
|
|
|
}
|
|
|
|
|
|
2025-05-02 17:23:49 +02:00
|
|
|
|
form.index-search-form > button > svg {
|
2025-05-02 17:49:46 +02:00
|
|
|
|
justify-self: center;
|
2025-05-02 17:23:49 +02:00
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
2024-02-08 13:07:49 -06:00
|
|
|
|
}
|
|
|
|
|
|
2025-05-02 17:49:46 +02:00
|
|
|
|
form.index-search-form > button > span {
|
|
|
|
|
display: none;
|
|
|
|
|
margin-top: 3px;
|
2024-02-08 13:07:49 -06:00
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-17 15:14:01 -07:00
|
|
|
|
::placeholder {
|
|
|
|
|
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
2023-01-22 14:03:45 -08:00
|
|
|
|
color: var(--highlight);
|
2022-11-15 12:57:14 -08:00
|
|
|
|
}
|
2023-08-18 14:34:53 -07:00
|
|
|
|
|
|
|
|
|
section.index-meta article {
|
2025-05-02 19:08:06 +02:00
|
|
|
|
padding-block: 30px;
|
2023-08-18 14:34:53 -07:00
|
|
|
|
}
|
2023-08-28 14:51:42 -07:00
|
|
|
|
|
2025-05-02 19:00:21 +02:00
|
|
|
|
table.index-meta {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
border-spacing: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table.index-meta tr + tr > * {
|
|
|
|
|
padding-block-start: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table.index-meta :is(th, td) {
|
|
|
|
|
padding: 0;
|
2024-01-26 12:16:38 -06:00
|
|
|
|
font-weight: 500;
|
2025-05-02 19:00:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table.index-meta th {
|
2024-01-26 12:16:38 -06:00
|
|
|
|
color: var(--secondary);
|
2025-05-02 19:00:21 +02:00
|
|
|
|
text-align: left;
|
2024-01-26 12:16:38 -06:00
|
|
|
|
}
|
|
|
|
|
|
2025-05-02 19:00:21 +02:00
|
|
|
|
table.index-meta td {
|
|
|
|
|
padding-inline-start: 10px;
|
2024-01-26 12:16:38 -06:00
|
|
|
|
color: var(--white);
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-28 14:51:42 -07:00
|
|
|
|
@media only screen and (max-width: 800px) {
|
|
|
|
|
form.index-search-form > input[type="text"] {
|
|
|
|
|
font: 34px var(--base-type);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-08 13:07:49 -06:00
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 650px) {
|
|
|
|
|
form.index-search-form > input[type="text"] {
|
|
|
|
|
font: 34px var(--base-type);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 480px) {
|
2025-05-02 17:49:46 +02:00
|
|
|
|
form.index-search-form {
|
|
|
|
|
grid-template-columns: auto;
|
|
|
|
|
}
|
2024-02-08 13:07:49 -06:00
|
|
|
|
form.index-search-form > input[type="text"] {
|
|
|
|
|
font: 27px var(--base-type);
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-02 17:49:46 +02:00
|
|
|
|
form.index-search-form > input[type="text"],
|
|
|
|
|
form.index-search-form > button {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-08 13:07:49 -06:00
|
|
|
|
form.index-search-form > button {
|
2025-05-02 17:49:46 +02:00
|
|
|
|
grid-template-columns: auto 60px;
|
2024-02-08 13:07:49 -06:00
|
|
|
|
}
|
|
|
|
|
|
2025-05-02 17:49:46 +02:00
|
|
|
|
form.index-search-form > button span {
|
|
|
|
|
display: block;
|
2024-02-08 13:07:49 -06:00
|
|
|
|
}
|
|
|
|
|
}
|