-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ruizdiasmatt
committed
Oct 21, 2023
1 parent
42fcfbf
commit ad30915
Showing
199 changed files
with
330,320 additions
and
41 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,5 @@ | ||
.App { | ||
text-align: center; | ||
} | ||
|
||
.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); | ||
} | ||
background-color: #496a8e; | ||
height: 100vh; | ||
width: 100vw; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
.home { | ||
display: flex; | ||
flex-direction: row; | ||
height: 100vh; | ||
background-color: #496a8e; | ||
} | ||
|
||
header { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100%; | ||
height: 10%; | ||
} | ||
|
||
input[type="text"] { | ||
width: 50%; | ||
height: 50%; | ||
border-radius: 5px; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
width: 100%; | ||
} | ||
|
||
.grid { | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
width: 70%; | ||
display: grid; | ||
grid-template-columns: repeat(3, 1fr); | ||
grid-gap: 3px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
.container { | ||
background-color: #334a64; | ||
padding-top: 3vh; | ||
padding-bottom: 3vh; | ||
width: 40%; | ||
min-width: 200px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
margin-top: auto; | ||
margin-bottom: auto; | ||
} | ||
|
||
.search-bar { | ||
background-color: white; | ||
width: 40%; | ||
border-radius: 0px; | ||
height: 2.5rem; | ||
padding: 0 15px; | ||
box-shadow: 0px 0px 2px #ddd; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
input[type="text"] { | ||
background-color: transparent; | ||
border: none; | ||
height: 100%; | ||
font-size: 1.1rem; | ||
width: 100%; | ||
margin-left: 5px; | ||
} | ||
|
||
input:focus { | ||
outline: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import "./SearchBar.css"; | ||
import { FaSearch } from "react-icons/fa"; | ||
|
||
function SearchBar() { | ||
return ( | ||
<div className="container"> | ||
<div className="search-bar"> | ||
<FaSearch id="search-icon" /> | ||
<input type="text" placeholder="Search" /> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default SearchBar; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
.container { | ||
display: flex; | ||
} | ||
|
||
.side-bar { | ||
height: 100%; | ||
width: 200px; | ||
position: fixed; | ||
z-index: 1; | ||
top: 0; | ||
left: 0; | ||
background-color: #334a64; | ||
overflow-x: hidden; | ||
padding-top: 50px; | ||
} | ||
|
||
.side-bar a { | ||
padding: 6px 8px 6px 16px; | ||
text-decoration: none; | ||
font-size: 20px; | ||
color: #818181; | ||
display: block; | ||
} | ||
|
||
.side-bar a:hover { | ||
color: #f1f1f1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import "./SideBar.css"; | ||
|
||
function SideBar() { | ||
return ( | ||
<div className="container"> | ||
<div className="side-bar"> | ||
<a>Sorting</a> | ||
<a>Tree Search</a> | ||
<a>Path Finding</a> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default SideBar; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* eslint-disable jsx-a11y/img-redundant-alt */ | ||
import "../../App.css"; | ||
import "../Home.css"; | ||
import React from "react"; | ||
|
||
function Home() { | ||
return ( | ||
<div className="home"> | ||
<div className="grid"> | ||
<div className="sorting"> | ||
<img | ||
src="images/Sorting-img.png" | ||
alt="description of image" | ||
width="200" | ||
height="200" | ||
/> | ||
</div> | ||
<div className="treeSearch"> | ||
<img | ||
src="images/TreeSearch-img.png" | ||
alt="description of image" | ||
width="200" | ||
height="200" | ||
/> | ||
</div> | ||
<div className="pathFinding"> | ||
<img | ||
src="images/PathFinding-img.png" | ||
alt="description of image" | ||
width="200" | ||
height="200" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Home; |
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.