Skip to content

Commit e1601b5

Browse files
Add it page
1 parent 67bd7a8 commit e1601b5

2 files changed

Lines changed: 1573 additions & 8 deletions

File tree

en/index.html

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -719,6 +719,7 @@
719719
gap: var(--space-sm);
720720
padding: var(--space-md) var(--space-2xl);
721721
background: rgba(255, 255, 255, 0.2);
722+
-webkit-backdrop-filter: blur(10px);
722723
backdrop-filter: blur(10px);
723724
border: 2px solid rgba(255, 255, 255, 0.3);
724725
border-radius: var(--radius-full);
@@ -1303,13 +1304,8 @@ <h2 id="search-heading">Search this website</h2>
13031304

13041305
<form action="./search.html" method="get" class="search-box-home">
13051306
<span class="search-icon-home">🔍</span>
1306-
<input
1307-
type="search"
1308-
name="q"
1309-
class="search-input-home"
1310-
placeholder="Search for topics, courses, places, or articles..."
1311-
aria-label="Search website"
1312-
>
1307+
<input type="search" name="q" class="search-input-home"
1308+
placeholder="Search for topics, courses, places, or articles..." aria-label="Search website">
13131309
</form>
13141310

13151311
<a href="./search.html" class="search-cta">
@@ -1376,7 +1372,7 @@ <h3>Language / Langue</h3>
13761372
const searchInput = document.querySelector('.search-input-home');
13771373

13781374
if (searchForm && searchInput) {
1379-
searchForm.addEventListener('submit', function(e) {
1375+
searchForm.addEventListener('submit', function (e) {
13801376
const query = searchInput.value.trim();
13811377
if (query) {
13821378
e.preventDefault();

0 commit comments

Comments
 (0)