Skip to content

Commit

Permalink
Merge pull request #20 from boidushya/development
Browse files Browse the repository at this point in the history
feat: added clean search bar
  • Loading branch information
dkhd authored Oct 10, 2021
2 parents 98c1b28 + 8da7f65 commit e07bebb
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 39 deletions.
19 changes: 19 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 8 additions & 36 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,38 +1,10 @@
.App {
text-align: center;
.absolute-search{
position:absolute;
top:0;
left:50%;
/* padding-top:1rem; */
}

.App-logo {
height: 40vmin;
pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}

.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}

.App-link {
color: #61dafb;
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.w-third-screen {
width:33.33vw;
}
31 changes: 28 additions & 3 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,16 @@ import About from "../components/about";
function Home(props) {
const [data, setData] = useState({});
const [openAbout, setOpenAbout] = useState(false);
const [searchText, setSearchText] = useState("");

const handleFullscreen = useFullScreenHandle();

const handleSearch = (e) => {
if (e.key === "Enter" && searchText.length){
window.location = `https://www.google.com/search?q=${searchText}`
}
}

useEffect(() => {
const update = async () => {
imageHandler();
Expand Down Expand Up @@ -51,11 +58,29 @@ function Home(props) {
backgroundRepeat: "no-repeat",
}}
/>
Any fullscreen content here
<div className="absolute bottom-5 left-5 flex flex-row w-100 text-sm text-white p-3 bg-opacity-10 bg-black">
<div className="absolute top-0 left-1/2 transform -translate-x-1/2 p-3">
<div class="relative flex items-center w-third-screen h-12 rounded-md bg-opacity-20 bg-black overflow-hidden">
<div class="grid place-items-center h-full w-12 text-white">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
</svg>
</div>

<input
class="peer h-full w-full outline-none text-sm text-white pr-2 bg-transparent placeholder-gray-100"
type="text"
id="search"
placeholder="Search something.."
value={searchText}
onChange={(e)=>setSearchText(e.target.value)}
onKeyDown={handleSearch}
/>
</div>
</div>
<div className="absolute bottom-5 left-5 flex flex-row w-100 text-sm text-white p-3 bg-opacity-20 bg-black rounded-sm">
<Clock></Clock>
</div>
<div className="absolute bottom-5 right-5 flex flex-row w-100 text-sm text-white p-3 bg-opacity-10 bg-black">
<div className="absolute bottom-5 right-5 flex flex-row w-100 text-sm text-white p-3 bg-opacity-20 bg-black rounded-sm">
<span>
Photo by{" "}
<a
Expand Down

0 comments on commit e07bebb

Please sign in to comment.