-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
97c7013
commit 6469cf8
Showing
3 changed files
with
287 additions
and
74 deletions.
There are no files selected for viewing
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,41 +1,58 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Lumen Final Paper</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
|
||
<body> | ||
<h1>Project Title</h1> | ||
<p>Add your names here.</p> | ||
<p>Prepared for York University course DIGM5520, 2024-05-31.</p> | ||
<!-- header --> | ||
<div id="nav"> | ||
<a class="logo" href="index.html">Lumen</a> | ||
<div id="nav-list"> | ||
<a class="list-item" href="index.html">Overview</a> | ||
<a class="list-item" href="report.html">Paper</a> | ||
<a class="list-item" href="https://xr.alicelab.world/">Project</a> | ||
</div> | ||
</div> | ||
|
||
<h1>Project Title</h1> | ||
<p>Add your names here.</p> | ||
<p>Prepared for York University course DIGM5520, 2024-05-31.</p> | ||
|
||
<h2>Contents</h2> | ||
<p>Table of contents</p> | ||
<h2>Contents</h2> | ||
<p>Table of contents</p> | ||
|
||
<h2>Overview</h2> | ||
<p>Project desciption</p> | ||
<h2>Overview</h2> | ||
<p>Project desciption</p> | ||
|
||
<h2>Related Work</h2> | ||
<p>Related work</p> | ||
<h2>Related Work</h2> | ||
<p>Related work</p> | ||
|
||
<h2>Development</h2> | ||
<h3>Sound Synthesis</h3> | ||
<p></p> | ||
<h2>Development</h2> | ||
<h3>Sound Synthesis</h3> | ||
<p></p> | ||
|
||
<h3>Agent Design and Interaction</h3> | ||
<p></p> | ||
<h3>Agent Design and Interaction</h3> | ||
<p></p> | ||
|
||
<h3>Player Avatar Design, Interaction, and Navigation</h3> | ||
<p></p> | ||
<h3>Player Avatar Design, Interaction, and Navigation</h3> | ||
<p></p> | ||
|
||
<h3>Databasing and User Persistence</h3> | ||
<p></p> | ||
<h3>Databasing and User Persistence</h3> | ||
<p></p> | ||
|
||
<h3>Challenges and Solutions</h3> | ||
<p></p> | ||
<h3>Challenges and Solutions</h3> | ||
<p></p> | ||
|
||
<h2>Results</h2> | ||
<p></p> | ||
<h2>Results</h2> | ||
<p></p> | ||
|
||
<h2>Future Work</h2> | ||
<p></p> | ||
<h2>Future Work</h2> | ||
<p></p> | ||
|
||
<h2>References</h2> | ||
<h2>References</h2> | ||
</body> | ||
</html> | ||
</html> |
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,135 @@ | ||
* { | ||
font-family: 'Open Sans', Arial, Helvetica, sans-serif; | ||
} | ||
|
||
#main { | ||
margin: 4% 6%; | ||
} | ||
|
||
p { | ||
font-size: 16px; | ||
line-height: 1.25em; | ||
} | ||
|
||
a { | ||
color: #e31837; | ||
} | ||
|
||
#nav { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
padding: 1em 0.5em; | ||
} | ||
|
||
#nav > .logo { | ||
color: red; | ||
font-size: 24px; | ||
text-decoration: none; | ||
line-height: 0; | ||
flex: 85%; | ||
} | ||
|
||
#nav-list { | ||
display: flex; | ||
flex: 15%; | ||
flex-direction: row; | ||
align-items: center; | ||
} | ||
|
||
.list-item { | ||
width: 4.5em; | ||
margin: 2px; | ||
text-align: center; | ||
text-decoration: none; | ||
} | ||
|
||
.list-item:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
/* If we want a header image with the project title overlayed on top instead of a slideshow of images */ | ||
/* #header { | ||
height: 500px; | ||
background: url("/img/IMG_1281.png") #eee center; | ||
background-size: cover; | ||
position: relative; | ||
text-align: center; | ||
} */ | ||
|
||
/* Centered text */ | ||
/* #header > h1 { | ||
color: white; | ||
font-size: 72px; | ||
position: absolute; | ||
top: 40%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} */ | ||
|
||
/* SLIDESHOW */ | ||
/* Slideshow container */ | ||
.slideshow-container { | ||
width: 100%; | ||
position: relative; | ||
} | ||
|
||
.slides > img { | ||
width: 100%; | ||
height: 560px; | ||
object-fit: cover; | ||
} | ||
|
||
/* Controls */ | ||
/* Next & previous buttons */ | ||
.prev, .next { | ||
color: white; | ||
font-weight: bold; | ||
font-size: 18px; | ||
cursor: pointer; | ||
position: absolute; | ||
top: 50%; | ||
width: auto; | ||
padding: 16px; | ||
margin-top: -22px; | ||
transition: 0.6s ease; | ||
border-radius: 0 3px 3px 0; | ||
user-select: none; | ||
} | ||
|
||
/* Position the "next button" to the right */ | ||
.next { | ||
right: 0; | ||
border-radius: 3px 0 0 3px; | ||
} | ||
|
||
/* On hover, add a black background color with a little bit see-through */ | ||
.prev:hover, .next:hover { | ||
background: rgba(0, 0, 0, 0.8); | ||
} | ||
|
||
/* Pagination */ | ||
.dot { | ||
height: 15px; | ||
width: 15px; | ||
background: #bbb; | ||
border-radius: 60px; | ||
margin: 0 2px; | ||
display: inline-block; | ||
transition: background-color 0.6s ease; | ||
} | ||
|
||
.active, .dot:hover { | ||
background: #717171; | ||
} | ||
|
||
/* Fading animation */ | ||
.fade { | ||
animation-name: fade; | ||
animation-duration: 1.5s; | ||
} | ||
|
||
@keyframes fade { | ||
from {opacity: 0.4;} | ||
to {opacity: 1;} | ||
} |