Skip to content

Commit

Permalink
added nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Nomaakip committed Oct 12, 2024
1 parent e25aa9e commit 9376c80
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,8 @@ <h1>soon™(need to learn more JavaScript to actually make this project)</h1>
<a href="https://nomaakip.github.io" class="github">
<button class="button">Check Out My Website!</button>
</a>
<a href="nightly.html">
<button class="button">test</button>
</a>
</body>
</html>
66 changes: 66 additions & 0 deletions nightly.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html>
</html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width , initial-scale=1.0">
<title>nightly</title>
<style>
body {
background-color: rgb(49, 226, 43);
}
header {
width: 100%;
height: 60px;
background: rgba(162, 0, 255, 0.644);
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
}

h1 {
text-align: center;
}

.title {
padding: 40px;
}

button {
display: block;
align-items: center;
justify-content: center;
text-align: center;
background-color: blueviolet;
border: none;
border-color: none;
color: white;
padding: 20px;
text-align: center;
text-decoration:none;
font-size: 16px;
margin: 1em auto;
border-radius: 8px;
transition: 0.5s;

}

button:hover {
transform:scale(1.1);
box-shadow: blueviolet 0px 0px 10px;
}
</style>
</head>
<body>
<header>
<h1>placeholder</h1>
</header>
<h1 class="title">placeholder</h1>
<a href="index.html">
<button>placeholder</button>
</a>
</body>

</html>

0 comments on commit 9376c80

Please # to comment.