-
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
Showing
9 changed files
with
172 additions
and
61 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
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 |
---|---|---|
@@ -1,47 +0,0 @@ | ||
body { | ||
font-family: "Assistant SemiBold", serif; | ||
} | ||
|
||
label, h3 { | ||
font-family: "Copperplate Gothic Light", serif; | ||
color: #d4af37; | ||
} | ||
|
||
BUtton { | ||
font-size: 24px; | ||
width: 80%; | ||
height: 100px; | ||
background: url('https://www.firstinspires.org/sites/default/files/uploads/hero_headers/header-image_1.jpg'); | ||
background-size: cover; | ||
background-position: center; | ||
color: white; | ||
font-size: 1.5em; | ||
border: none; | ||
border-radius: 8px; | ||
cursor: pointer; | ||
} | ||
|
||
|
||
.button-container { | ||
max-width: 780px; | ||
width: 100%; | ||
margin: 0 auto; | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-around; | ||
padding: 0 10px; | ||
} | ||
|
||
.resizable-button { | ||
width: 30%; | ||
max-width: 250px; | ||
height: auto; | ||
font-size: larger; | ||
margin: 10px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.Autonomus { | ||
width: 80px; | ||
height: 40px; | ||
} | ||
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
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,7 @@ | ||
input, label { | ||
margin: 5px; /* Adjust margin as needed */ | ||
display: block; | ||
text-align: center; | ||
font-weight: bold; | ||
box-sizing: border-box; /* Include padding and border in element's total width and height */ | ||
} |
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,30 @@ | ||
import React from 'react'; | ||
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; | ||
import Navbar from "C:/code/my-app/src/Pages/Navbar/Navbar.jsx"; | ||
import "./PitScouting.css"; | ||
|
||
function PitScouting() { | ||
return ( | ||
<div> | ||
<Navbar /> | ||
<br/> | ||
{ScoutNavigate()} | ||
</div> | ||
); | ||
} | ||
|
||
function ScoutNavigate() { | ||
return ( | ||
<div> | ||
<label htmlFor="Sname">Name:</label><br/> | ||
<input type="text" id="Sname" name="Name"/><br/> | ||
<br/> | ||
</div> | ||
); | ||
} | ||
|
||
const handleClickScout = () => { | ||
window.location.href = '/Scouting'; | ||
}; | ||
|
||
export default PitScouting; |
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
5b3e7cf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.