Skip to content

Commit

Permalink
Kaylin's Repo merge
Browse files Browse the repository at this point in the history
  • Loading branch information
anderm18 committed Mar 15, 2022
1 parent e6cec26 commit 41533ea
Show file tree
Hide file tree
Showing 8 changed files with 684 additions and 0 deletions.
35 changes: 35 additions & 0 deletions Customizations/build.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<head>
<title>Build Pathway</title>
<link rel="stylesheet" href="hp.css">
</head>
<body>

<div class="blocks title-bar">HASS Pathways</div>
<div style="height:75px;"></div>
<div class="blocks v-nav-bar">
<button class="button v-button1" onclick="document.location='index.html'">Home</button><button class="button" onclick="document.location='explore.html'">Explore</button><button class="button" onclick="document.location='course.html'">Pick a Course</button><button class="button v-button4" onclick="document.location='pathways.html'">My Pathways</button></div>

<p style="padding-left:225px; padding-right:5px;"" title="Disclaimer: we are NOT yet working with the registrar and advisors. Therefore, please meet with your advisors and counselors to ensure that the options you have narrowed down are appropriate and attainable for your major and class;">
This will most likely link to the pre-existing remake for now.</p>

<div style="height:300px"></div>

<<div class="footer">
<h3 style="text-align:center;position:initial">
Additional Resources:</h3>
<p id="resources">
<a>All Pathways: </a>
<a id="link" href="http://catalog.rpi.edu/content.php?catoid=22&navoid=542">Integrative Pathways</a>
<a>Ask the Registrar: </a>
<a id="link" href="https://webforms2.rpi.edu/office-registrar-contact-us">Contact Registrar</a>
<a>Ask your Class Dean: </a>
<a id="link" href="https://directory.rpi.edu/groups/3071">Contact Dean</a></p>

<p style="font-style:italic;padding-left:5px; padding-right:5px;font-size:10px;">
Disclaimer: we are NOT yet working with the registrar and advisors. Therefore, please meet with your advisors and counselors to ensure that the options you have narrowed down are appropriate and attainable for your major and class.
</p>
<p><img src="emblem.jpg" alt="School of Humanities, Arts and Social Sciences Logo" width="240" height="70"></p>
</div>

</body>
</html>
98 changes: 98 additions & 0 deletions Customizations/course.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<head>
<title>Start with a Course</title>
<link rel="stylesheet" href="hp.css">
</head>
<body>
<div class="blocks title-bar">HASS Pathways</div>
<div style="height:55px;"></div>
<h2 style="text-align:center">Artificial Intelligence</h2>
<img id="top" class="arrow" style="top:230px;left:330px;transform:rotate(30deg);"src="arrow.png" alt="from course at end of arrow to arrow head"></p>
<img id="mid" class="arrow" style="top:280px;left:330px;"src="arrow.png" alt="from course at end of arrow to arrow head"></p>
<img id="bot" class="arrow" style="top:330px;left:330px;transform:rotate(-30deg);"src="arrow.png" alt="from course at end of arrow to arrow head"></p>
<div class="blocks v-nav-bar">
<button class="button v-button1" onclick="document.location='index.html'">Home</button>
<button class="button" onclick="document.location='explore.html'">Explore</button>
<button class="button" onclick="document.location='build.html'">Build Pathway</button>
<button class="button v-button4" onclick="document.location='pathways.html'">My Pathways</button></div>

<div id="pathways" class="flow" style="z-index:100;left:130px;background-color:rgb(117, 117, 117);display:block;">
<p style="font-size:20px;text-align:center;color:black;">Course 1</p>
<button id="c1.1" class="flow-button" onclick="c1Select()">Minds and Machines</button>
<button id="c1.2" class="flow-button" onclick="c2Select()">AI and Society</button>
<button id="c1.3" class="flow-button" onclick="c3Select()">Are Humans Rational?</button>
</div>
<div id="pathways" class="flow" style="left:415px;background-color:rgb(117, 117, 117);display:block;">
<p style="font-size:20px;text-align:center;color:black;">Course 2</p>
<div style="height:78px"></div>
<button id="c2" class="flow-button" onclick="smallest()">Introduction to Cognitive Science</button>
</div>
<div id="pathways" class="half flow" style="left:700px;background-color:rgb(117, 117, 117);display:block;">
<p style="font-size:20px;text-align:center;color:black;">Course 3</p>
<button class="fb2 flow-button">Game AI</button>
<button class="fb2 flow-button">Learning and Advanced Game AI</button>
<button class="fb2 flow-button">Programming for Cog Sci and AI</button>
<button class="fb2 flow-button">Artificial Intelligent Agents</button>
<button class="fb2 flow-button">Cognitive Modeling</button>
<button class="fb2 flow-button">Intelligent Virtual Agents</button>
<button class="fb2 flow-button">Ethics of AI</button>
<button class="fb2 flow-button">Language Endowed Intelligent Agents</button>
</div>


<script>
var c1 = document.getElementById("c1.1");
var c2 = document.getElementById("c1.2");
var c3 = document.getElementById("c1.3");
var top_a = document.getElementById("top");
var mid_a = document.getElementById("mid");
var bot_a = document.getElementById("bot");
function c1Select(){
if(c1.onclick){
c1.style.backgroundColor = "rgb(58, 75, 75)";
c1.style.opacity = "1";
top_a.style.display = 'block';
c2.style.backgroundColor = "rgb(73, 145, 145)";
c2.style.opacity = "0.7";
mid_a.style.display = 'none';
c3.style.backgroundColor = "rgb(73, 145, 145)";
c3.style.opacity = "0.7";
bot_a.style.display = 'none';
}
}
function c2Select(){
if(c2.onclick){
c2.style.backgroundColor = "rgb(58, 75, 75)";
c2.style.opacity = "1";
mid_a.style.display = 'block';
c1.style.backgroundColor = "rgb(73, 145, 145)";
c1.style.opacity = "0.7";
top_a.style.display = 'none';
c3.style.backgroundColor = "rgb(73, 145, 145)";
c3.style.opacity = "0.7";
bot_a.style.display = 'none';
}
}
function c3Select(){
if(c3.onclick){
c3.style.backgroundColor = "rgb(58, 75, 75)";
c3.style.opacity = "1";
bot_a.style.display = 'block';
c1.style.backgroundColor = "rgb(73, 145, 145)";
c1.style.opacity = "0.7";
top_a.style.display = 'none';
c2.style.backgroundColor = "rgb(73, 145, 145)";
c2.style.opacity = "0.7";
mid_a.style.display = 'none';
}
}
function smallest(){
var c1 = document.getElementById("c2");
if(c1.onclick){
c1.style.backgroundColor = "rgb(58, 75, 75)";
c1.style.opacity = "1";
}
}
</script>

</body>
</html>
Binary file added Customizations/emblem.jpg
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 41533ea

Please sign in to comment.