Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
NiicoNiicoDev committed Aug 9, 2023
0 parents commit c1313a8
Show file tree
Hide file tree
Showing 29 changed files with 2,092 additions and 0 deletions.
1 change: 1 addition & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DirectoryIndex index.html
119 changes: 119 additions & 0 deletions NLabQuests.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<title style="font-size: 60%;">NLab Quests</title>
</head>
<body style="background-color: #28282b;">

<div class="mobilemenubutton">
<div id="rcorners1" class="child" onclick="setVisible('mobile_menu')" style="width: fit-content; height: fit-content;">
<i class="material-symbols-rounded" id="" style="padding: 3px; font-size: 32px; color: aliceblue;"> menu </i>
</div>
</div>

<div id="mobile_menu" style="height: fit-content;">
<div id="rcorners1" style="width: 100%; height: fit-content; padding-bottom: 20px; background-color: #252527;">
<div>
<div class="center" id="" onclick="setInvisible('mobile_menu')" style=" width: fit-content; position: absolute; top: 10px; margin-left: 0px; user-select: none;">
<i class="material-symbols-rounded" id="navbarformat" style="color: aliceblue;"> chevron_left </i>
</div>

<div style="width: 100%; height: 100%; display: flexbox; flex-direction: column; margin-top: 55px; padding-top: 20px; text-align: center;">
<div class="m_menubutton">
<a href="index.html" class="m_menubutton" style="color: aliceblue; text-decoration: none;">
<i class="material-symbols-rounded" id="navbarformat"> Home </i>
<p style="margin: 0;"> Home </p>
</a>
</div>

<div class="m_menubutton">
<a href="about.html" style="color: aliceblue; text-decoration: none;">
<i class="material-symbols-rounded" id="navbarformat"> person </i>
<p style="margin: 0;"> About </p>
</a>
</div>

<div class="m_menubutton">
<a href="portfolio.html" style="color: aliceblue; text-decoration: none;">
<i class="material-symbols-rounded" id="navbarformat"> work_history </i>
<p style="margin: 0;"> Work </p>
</a>
</div>

<div class="m_menubutton">
<a href="contact.html" class="m_menubutton" style="color: aliceblue; text-decoration: none;">
<i class="material-symbols-rounded" id="navbarformat"> contact_page </i>
<p style="margin: 0;"> Contact </p>
</a>
</div>

</div>
</div>
</div>
</div>

<div class="leftbar">
<div>
<p class="navp">
NLabs
</p>

<div id="abs_center">
<nav>
<ul>
<li><a href="index.html">
<i class="material-symbols-rounded" id="navbarformat"> Home </i>
<p id="abs_center" style="margin: 0;"> Home </p>
</a></li>

<li><a href="about.html">
<i class="material-symbols-rounded" id="navbarformat"> person </i>
<p id="abs_center" style="margin: 0;"> About </p>
</a></li>

<li><a href="portfolio.html">
<i class="material-symbols-rounded" id="navbarformat"> work_history </i>
<p id="abs_center" style="margin: 0;"> Work </p>
</a></li>

<li id="abs_center"><a href="contact.html">
<i class="material-symbols-rounded" id="navbarformat"> contact_page </i>
<p id="abs_center" style="margin: 0;"> Contact </p>
</a></li>
</ul>
</nav>
</div>
</div>

</div>

<div class="rightbody" id="rightbody" style="width: 80%;">
<div class="center" style="padding-top: 40px; width:40vw; padding-left: 20px; padding-right: 20px;">
<div id="rcorners1" style="margin-bottom: 40px;">
<p id="abs_center" style="font-size:xx-large; font-weight: bolder; padding: 20px; margin: 0; text-align: center;">
NLab Quests
</p>
</div>
</div>
</div>

</body>
</html>

<script>
function setVisible(id) {
document.getElementById(id).style.visibility = 'visible';
document.getElementById(id).style.width = '100px'
document.getElementById('rightbody').style.opacity = '0.1'
}

function setInvisible(id) {
document.getElementById(id).style.width = '0px'
document.getElementById(id).style.visibility = 'hidden';
document.getElementById('rightbody').style.opacity = '1'
}
</script>
Loading

0 comments on commit c1313a8

Please sign in to comment.