Skip to content

Commit

Permalink
Merge pull request #5 from tuftsceeo/dev/nick
Browse files Browse the repository at this point in the history
Dev/nick merge into main
  • Loading branch information
NicK4rT authored Oct 11, 2024
2 parents 2b23257 + a8c8627 commit 021cac4
Show file tree
Hide file tree
Showing 32 changed files with 1,903 additions and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
Binary file added docs/.DS_Store
Binary file not shown.
13 changes: 13 additions & 0 deletions docs/.idea/.idea.docs.dir/.idea/.gitignore

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

4 changes: 4 additions & 0 deletions docs/.idea/.idea.docs.dir/.idea/encodings.xml

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

8 changes: 8 additions & 0 deletions docs/.idea/.idea.docs.dir/.idea/indexLayout.xml

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

6 changes: 6 additions & 0 deletions docs/.idea/.idea.docs.dir/.idea/vcs.xml

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

223 changes: 223 additions & 0 deletions docs/community.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,223 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="images/favicon-48x48.png" sizes="48x48" />
<link rel="icon" type="image/svg+xml" href="images/favicon.svg" />
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Smart System Platform" />
<link rel="manifest" href="images/site.webmanifest" />

<title>Smart System Education Platform</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
min-width: 1000px;
}
header {
background-color: #333;
padding: 10px 0;
}
.menu {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0;
margin: 0 10px;
}
.menu a {
color: white;
text-decoration: none;
margin: 0 10px;
padding: 5px 0;
}
.menu a:hover {
text-decoration: underline;
}
.menu a.active {
font-weight: bold;
text-decoration: underline;
color: #FF9900;
}
.logo-container {
display: flex;
align-items: center;
}
.logo-container img {
height: 40px;
width: auto;
margin-right: 10px;
}
.logo-text {
font-size: 24px;
font-weight: bold;
color: white;
line-height: 40px;
white-space: nowrap;
}
.menu-items {
display: flex;
justify-content: flex-end;
flex-grow: 1;
}
main {
flex-grow: 1;
padding: 20px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px 0;
width: 100%;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-logo-left {
height: 63px;
width: auto;
margin-left: 20px;
margin-right: 20px;
}
.footer-logo-right {
height: 75px;
width: auto;
margin-left: 20px;
margin-right: 20px;
}
.footer-text {
text-align: center;
flex-grow: 1;
}
footer a {
color: #FF9900;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
.hamburger {
display: none;
}

@media (max-width: 1000px) { /*768*/
body {
min-width: 100%;
}
.logo-text {
font-size: 20px;
line-height: 1.2;
display: block;
}
.logo-text span {
display: block;
}
.menu-items {
display: none;
flex-direction: column;
align-items: flex-start;
width: 100%;
background-color: #333;
position: absolute;
top: 80px;
left: 0;
}
.menu-items.show {
display: flex;
}
.menu-items a {
padding: 10px 20px;
width: 100%;
}
.hamburger {
display: block;
background: none;
border: none;
font-size: 24px;
color: white;
}
.menu.show {
display: flex;
}

.footer-content {
flex-direction: column;
}
.footer-logo-left, .footer-logo-right {
order: 2;
margin: 3px 0;
}
.footer-text {
order: 1;
margin-bottom: 10px;
}
.footer-text p:first-child {
display: block;
line-height: 1.5;
}
.footer-text p:first-child span {
display: block;
}
}
</style>
</head>
<body>

<header>
<div class="menu">
<div class="logo-container">
<a href="index.html" style="display: flex; align-items: center;">
<img src="images/favicon.svg" width="40" height="40" alt="Logo">
<span class="logo-text">
<span>Smart System</span>
<span>Education Platform</span>
</span>
</a>
</div>
<div class="menu-items" id="menuItems">
<a href="index.html">Home</a>
<a href="mission.html">Mission</a>
<a href="technology.html">Platform</a>
<a href="start.html">Get Started</a>
<a href="tools.html">Toolbox</a>
<a href="community.html" class="active">Community</a>
</div>
<button class="hamburger" onclick="toggleMenu()">&#9776;</button>
</div>
</header>

<main>
<h1>Community & Outreach</h1>
<p>Contact details, link CEEO and FETLab and showcase how you can get involved as well as show some CEEO and community made projects</p>
</main>

<footer>
<div class="footer-content">
<img src="images/SOE_CEEO_horiz_white.svg" width="274" height="63" alt="Tufts University; Center for Engineering Education and Outreach Logo" class="footer-logo-left">
<div class="footer-text">
<p><span>© 2024 Smart System Education Platform.</span> All rights reserved.</p>
<p><a href="contact.html">Contact Us</a> | <a href="privacy.html">Privacy Policy</a></p>
</div>
<img src="images/eth_logo_kurz_neg.svg" width="206" height="75" alt="Swiss Federal Institute of Technology Zurich (ETH Zürich) Logo" class="footer-logo-right">
</div>
</footer>

<script>
function toggleMenu() {
const menuItems = document.getElementById('menuItems');
menuItems.classList.toggle('show');
}
</script>

</body>
</html>
Binary file added docs/images/.DS_Store
Binary file not shown.
280 changes: 280 additions & 0 deletions docs/images/SOE_CEEO_horiz_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions docs/images/eth_logo_kurz_neg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions docs/images/exampleusage.rtf
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{\rtf1\ansi\ansicpg1252\cocoartf2818
\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fmodern\fcharset0 Courier;}
{\colortbl;\red255\green255\blue255;\red0\green0\blue0;}
{\*\expandedcolortbl;;\cssrgb\c0\c0\c0;}
\paperw11900\paperh16840\margl1440\margr1440\vieww11520\viewh8400\viewkind0
\deftab720
\pard\pardeftab720\partightenfactor0

\f0\fs26 \cf0 \expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 <link rel="icon" type="image/png" href="/favicon-48x48.png" sizes="48x48" />\
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />\
<link rel="shortcut icon" href="/favicon.ico" />\
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />\
<meta name="apple-mobile-web-app-title" content="Smart System Platform" />\
<link rel="manifest" href="/site.webmanifest" />\
}
Binary file added docs/images/favicon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/favicon.ico
Binary file not shown.
12 changes: 12 additions & 0 deletions docs/images/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/old/SMLOGOimproved.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/old/SOE_CEEO_horiz_white.eps
Binary file not shown.
Binary file added docs/images/old/SOE_CEEO_horiz_white_RGB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/old/eth_logo_kurz_neg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/old/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 021cac4

Please sign in to comment.