Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
pirateIV committed Jul 31, 2023
1 parent 74a6903 commit 7bdb6d9
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
9 changes: 9 additions & 0 deletions css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,13 @@
width: 50%;
height: 50%;
transform: translate(50%, 50%)
}

/* Search */
section.search {
background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.4));
height: 200px !important;
}
section.search input {
width: 450px;
}
22 changes: 15 additions & 7 deletions html/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
/>
<link rel="stylesheet" href="../bootstrap.min.css" />
</head>
<body>
<body class="bg-000">
<main class="position-relative">
<header id="header">
<section id="header">
<section class="w-100">
<nav
class="d-flex pt-4 pe-5 align-items-center justify-content-between w-100 flex-nowrap"
Expand Down Expand Up @@ -115,13 +115,21 @@
</nav>
</section>

<div class="search-header" id="searchHeader">
<h1>Search </h1>
</div>

</header>

<section class="search">
<input type="text" placeholder="Search ">
<section class="search d-flex justify-content-center ">
<div class="d-flex align-items-center justify-content-center mt-5 gap-3">
<select class="select form-control w-auto">
<option value="movie">Movie</option>
<option value="movie">Series</option>
<option value="person">Person</option>
</select>
<div class="search-box d-flex gap-3">
<input type="text" class="form-control" placeholder="Search for movies...">
<span class="btn btn-danger"><i class="fas fa-search"></i></span>
</div>
</div>
</section>

</main>
Expand Down

0 comments on commit 7bdb6d9

Please sign in to comment.