2023-08-18 00:14:01 +02:00
|
|
|
section.index-search {
|
2023-01-22 23:03:45 +01:00
|
|
|
width: 100%;
|
2023-08-18 00:14:01 +02:00
|
|
|
background: var(--white);
|
2023-01-22 23:03:45 +01:00
|
|
|
}
|
|
|
|
|
2023-08-18 00:14:01 +02:00
|
|
|
section.start a.search-link {
|
|
|
|
color: var(--highlight);
|
|
|
|
font-size: 2.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
border: 0;
|
|
|
|
display: block;
|
2022-11-15 21:57:14 +01:00
|
|
|
}
|
|
|
|
|
2023-08-18 00:14:01 +02:00
|
|
|
form.index-search-form {
|
|
|
|
width: 80%;
|
|
|
|
max-width: 1000px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 30px 0;
|
2022-11-15 21:57:14 +01:00
|
|
|
}
|
|
|
|
|
2023-08-18 00:14:01 +02:00
|
|
|
form.index-search-form > input[type="text"] {
|
2023-08-28 23:51:42 +02:00
|
|
|
width: 88%;
|
2023-08-18 00:14:01 +02:00
|
|
|
height: 50px;
|
|
|
|
font: 44px var(--base-type);
|
2023-01-18 00:54:59 +01:00
|
|
|
}
|
|
|
|
|
2023-08-18 00:14:01 +02:00
|
|
|
form.index-search-form > button {
|
|
|
|
height: 60px;
|
|
|
|
width: 60px;
|
|
|
|
position: relative;
|
|
|
|
top: 9px;
|
2023-08-28 23:51:42 +02:00
|
|
|
right: 0;
|
2023-01-22 23:03:45 +01:00
|
|
|
}
|
|
|
|
|
2024-02-08 20:07:49 +01:00
|
|
|
form.index-search-form > button > img#search-icon {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
form.index-search-form > button > label {
|
|
|
|
font-weight: 500;
|
|
|
|
top: 15px;
|
|
|
|
position: relative;
|
|
|
|
font-size: 1.5em;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2023-08-18 00:14:01 +02:00
|
|
|
::placeholder {
|
|
|
|
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
2023-01-22 23:03:45 +01:00
|
|
|
color: var(--highlight);
|
2022-11-15 21:57:14 +01:00
|
|
|
}
|
2023-08-18 23:34:53 +02:00
|
|
|
|
|
|
|
section.index-meta article {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
2023-08-28 23:51:42 +02:00
|
|
|
|
2024-01-26 19:16:38 +01:00
|
|
|
div.index-meta {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 50% 50%;
|
|
|
|
gap: 10px;
|
|
|
|
width: 98%;
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
div.index-meta > label:nth-child(2),
|
|
|
|
div.index-meta > label:nth-child(4),
|
|
|
|
div.index-meta > label:nth-child(6) {
|
|
|
|
color: var(--white);
|
|
|
|
width: 100%;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2023-08-28 23:51:42 +02:00
|
|
|
@media only screen and (max-width: 800px) {
|
|
|
|
form.index-search-form > input[type="text"] {
|
|
|
|
width: 85%;
|
|
|
|
height: 50px;
|
|
|
|
font: 34px var(--base-type);
|
|
|
|
}
|
|
|
|
}
|
2024-02-08 20:07:49 +01:00
|
|
|
|
|
|
|
@media only screen and (max-width: 650px) {
|
|
|
|
form.index-search-form > input[type="text"] {
|
|
|
|
width: 80%;
|
|
|
|
height: 50px;
|
|
|
|
font: 34px var(--base-type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
form.index-search-form > input[type="text"] {
|
|
|
|
width: 99%;
|
|
|
|
height: 50px;
|
|
|
|
font: 27px var(--base-type);
|
|
|
|
}
|
|
|
|
|
|
|
|
form.index-search-form > button {
|
|
|
|
width: 99%;
|
|
|
|
top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form.index-search-form > button > label {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
form.index-search-form > button > img#search-icon {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|