diff --git a/about.html b/about.html new file mode 100644 index 0000000..0f2240b --- /dev/null +++ b/about.html @@ -0,0 +1,36 @@ + + + + + + About Us - Combustible Lemons Robotics + + + + + +
+
+

Combustible Lemons Robotics

+ +
+
+
+ +
+
+

About Us

+ +

+ Hi!! We are the Combustible Lemons. We are a Roboitcs (FRC) team based out of Morestown High School. We meet most days from 2 to 3:45. We hope you will join us in D108!! +

+ +
+
+ + + + + diff --git a/docs.html b/docs.html new file mode 100644 index 0000000..2e4ea47 --- /dev/null +++ b/docs.html @@ -0,0 +1,32 @@ + + + + + Documentation Page + + +
+
+
+

Documentation for Our Projects

+
+
+
+ +
+
+ +
+

Scouting Application

+

+ Access the scouting application here. +

+ + +
+ + + + diff --git a/docs/scouting.html b/docs/scouting.html new file mode 100644 index 0000000..619fed7 --- /dev/null +++ b/docs/scouting.html @@ -0,0 +1,15 @@ + +

+ 1. Get into a GitHub account (preferably the team one)
+ 2. Click on where it says code
+ 3. Then click on code spaces
+ 4. Click on the existing code space
+ 5. In the terminal type npm install
+ 6. Then type npm audit
+ 7. Type cd “scouting/backend”
+ 8. Type node server.js
+ 9. Click the green button labeled open in browser, that is the link
+ 10. REMEMBER TO TURN OFF THE SERVER BY TYPING CONTROL C IN THE TERMINAL IR DELETING THE TERMINAL WHEN YOU ARE DONE
+ 11. THIS WILL PREVENT IS FROM RUNNING OUT OF FREE TEIR
+ 12. you can also clear the database if you want
+

diff --git a/home.jpg b/home.jpg new file mode 100644 index 0000000..d0f55aa Binary files /dev/null and b/home.jpg differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..0ffcc0c --- /dev/null +++ b/index.html @@ -0,0 +1,101 @@ + + + + + + + + + + +
+ Home + About + Docs +
+
+ + +
+
+
+ + + + diff --git a/lemons.png b/lemons.png new file mode 100644 index 0000000..a6ea9de Binary files /dev/null and b/lemons.png differ diff --git a/script.js b/script.js new file mode 100644 index 0000000..e69de29 diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..a912beb --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,110 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + background-color: #f4f4f4; + color: #333; +} +header { + background-color: #ffcc00; + color: #333; + padding: 20px; + text-align: center; +} +.image a:hover{ + background-color: #ffcc00; + color: #333; + padding: 20px; + text-align: center; + background-color: #f0c154; +} +header h1 { + margin: 0; + font-size: 2.5rem; +} +nav { + margin-top: 10px; +} +nav a { + text-decoration: none; + color: #333; + margin: 0 15px; + font-weight: bold; +} +section { + padding: 50px; + background-color: #fff; +} +.about-content { + max-width: 900px; + margin: 0 auto; + text-align: center; +} +.about-content h2 { + font-size: 2rem; + color: #ffcc00; + margin-bottom: 20px; +} +.about-content p { + line-height: 1.6; + font-size: 1.1rem; +} +footer { + background-color: #333; + color: #fff; + text-align: center; + padding: 10px; + position: relative; + bottom: 0; + width: 100%; +} +footer p { + margin: 0; +} +.parent { +text-align: center; +background-color: #ffcc00; +} +.child { +display: inline-block; +padding: 1rem 1em; +vertical-align: middle; +} +.doc-container { + max-width: 1200px; + margin: 0 auto; + padding: 20px; + background-color: #fff; +} + +.doc-title { + font-size: 2.5rem; + color: #ffcc00; + margin-bottom: 20px; +} + +.doc-section { + margin-bottom: 30px; + background-color: #fff; /* This ensures the entire section has the same background color */ + padding-bottom: 2px; /* You can adjust this value as needed */ + padding-top: 20px; /* Add padding on top for consistency */ +} + + +.doc-section h3 { + font-size: 1.5rem; + color: #333; +} + +.doc-section p { + font-size: 1.1rem; + line-height: 1.8; + color: #666; +} + +.doc-section code { + background-color: #f4f4f4; + padding: 5px; + border-radius: 5px; + color: #333; +} \ No newline at end of file