Skip to content

Commit

Permalink
Merge pull request #52 from UAH-ACM/onemonth-submissions-23
Browse files Browse the repository at this point in the history
Onemonth submissions 23
  • Loading branch information
salsajeries authored Nov 21, 2023
2 parents 13299d2 + fa3d143 commit 68d0498
Show file tree
Hide file tree
Showing 13 changed files with 439 additions and 0 deletions.
Binary file added members/ChandlerStone/assets/IMG_0786.png
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.
5 changes: 5 additions & 0 deletions members/ChandlerStone/functions.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// console.log("Hello World.");

function myFunction() {

}
25 changes: 25 additions & 0 deletions members/ChandlerStone/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Chandler Stone</title>
<link rel = "stylesheet" href = "style.css">
<script src="functions.js"></script>
</head>
<body>
<center>
<img src="./assets/IMG_0786.png" alt="[picture of me]" wdith="300" height="300">
</center>
<p>Hello! I am Chandler Stone, an undergraduate studying computer engineering here at the University of Alabama in Huntsville!
I am involved with many clubs and orgs here including being the membership chair of ACM, and the vice president of IEEE.
</p>
<hr>
<center>
<a href="https://github.com/chandler-stone">
<img src="./assets/github-mark-white.png" alt="[github]" width="50" height="50">
</a>
<a href="https://uah.acm.org/">
<img src="./assets/acm-logo-transparent-chapter.png" alt="[UAH ACM Chapter]" width="50" height="50">
</a>
</center>
</body>
</html>
10 changes: 10 additions & 0 deletions members/ChandlerStone/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
body {
background-color: #424549;
}
img {
border-radius: 50%;
}
p {
color: antiquewhite;
margin: 2% 30% 0% 30%;
}
Binary file added members/jacobwarren/assets/acm_logo.ico
Binary file not shown.
26 changes: 26 additions & 0 deletions members/jacobwarren/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en-US";>
<head>
<meta charset="utf-8">
<meta name="viewport" content="height=device-height, width=device-width, initial-scale=1">
<meta name="author" content="Jacob Warren">

<title>Title</title>

<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="./assets/acm_logo.ico">

<script type="text/javascript" src="./script.js"></script>
</head>
<body id="body">
<a href="https://uah.acm.org/" class="link">
ACM
</a>
<button-container id="go-container">
<button id="go">
Go
</button>
</button-container>

</body>
</html>
15 changes: 15 additions & 0 deletions members/jacobwarren/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
const append = "_";
window.onload = function(){
const go = document.querySelector('#go');
go.addEventListener('click', goClick);

function goClick() {

const go = document.createElement("button");
document.querySelector('#go-container').appendChild(go);
go.id = "go";
go.innerText = "Go";

go.addEventListener('click', goClick);
}
}
25 changes: 25 additions & 0 deletions members/jacobwarren/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
* {
box-sizing: border-box;
margin: 0;
}

html {
font-family: Arial, Helvetica, sans-serif;
}

body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;

background: darkred;
height: 100vh;
border: 4vh solid olive;
}

.link {
color:cadetblue;
text-decoration: none;
}

95 changes: 95 additions & 0 deletions members/justinfleming/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<!DOCTYPE html>
<html lang = "en">
<head>
<style>
.word
{
position:absolute;
top:200px;
vertical-align:top;
white-space:nowrap;
}
.Levels
{
position:absolute;
vertical-align:top;
white-space:nowrap;
}
.Levels .Level1
{
top:0px;
left:2000px;
}
.Levels .Level2
{
top:0px;
left:2000px;
}
.obstacle
{
position:absolute;
vertical-align:top;
top:200px;
left:2000px;
white-space:nowrap
}
.death
{
position:absolute;
vertical-align:top;
top:100px;
left:2000px;
writing-mode: vertical-rl
}
.Controls
{
text-align: center;
position:relative;
vertical-align:top;
}
.Hint
{
text-align: center;
position:relative;
vertical-align:top;
left:2000px;
}
</style>
</head>
<body>
<script src = "script.js">
</script>
<h1>
<div class = "word">
Player
</div>
<div class = "Controls">
Press Space To Play
</div>
<div class = "Hint">
Try Spamming Space To Get Higher
</div>
</h1>
<h2>
<div class = "Levels">
<div class = "Levels Level1">
Level 1
</div>
<div class = "Levels Level2">
You Won! No more levels.
</div>
</div>
</h2>
<h3>
<div class = "obstacle">
OBSTACLE
</div>
<div class = "death">
WALL OF NO ESCAPE
</div>
</h3>
<h6>
<a href="https://uah.acm.org/" style = "position:absolute; top:10px; left:10px">Back to ACM</a>
</h6>
</body>
</html>
Loading

0 comments on commit 68d0498

Please sign in to comment.