-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
3 changed files
with
244 additions
and
43 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
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,198 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>nolooking</title> | ||
<meta description="Armin, Dan and Nick assembled for the Legends of Lightning Hackathon" /> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" | ||
crossorigin="anonymous" | ||
/> | ||
<script | ||
src="https://code.jquery.com/jquery-3.2.1.slim.min.js" | ||
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" | ||
crossorigin="anonymous" | ||
></script> | ||
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" | ||
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" | ||
crossorigin="anonymous" | ||
></script> | ||
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" | ||
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" | ||
crossorigin="anonymous" | ||
></script> | ||
</head> | ||
|
||
<div class="row vertical-center cover-container fill vh-100 h-100 w-100"> | ||
<div class="col-lg-5 mx-auto g-0 p-4 text-break"> | ||
<h1>nolooking</h1> | ||
<h3> | ||
Assembled for the | ||
<a | ||
href="https://makers.bolt.fun/tournaments/1/overview" | ||
target="_blank" | ||
> | ||
Legends of Lightning | ||
</a> | ||
Hackathon. | ||
</h3> | ||
<div> | ||
<nav class="navbar navbar-expand-sm"> | ||
<button | ||
class="navbar-toggler" | ||
type="button" | ||
data-toggle="collapse" | ||
data-target="#navbarNav" | ||
aria-controls="navbarNav" | ||
aria-expanded="false" | ||
aria-label="Toggle navigation" | ||
> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarNav"> | ||
<ul class="navbar-nav"> | ||
<li class="nav-item"> | ||
<a | ||
class="nav-link" | ||
href="https://github.com/nolooking" | ||
target="blank" | ||
>Github</a | ||
> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link disabled" href="https://makers.bolt.fun/tournaments/1/overview" target="blank" | ||
>Maker.fun</a | ||
> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</div> | ||
<br /> | ||
<h3>Members:</h3> | ||
<p id="members"></p> | ||
<br /> | ||
<br /> | ||
<p> | ||
<b> Making Lightning Channels Easier and More Private </b> | ||
<br /> | ||
<code> | ||
> Building a lightning channel generator which uses | ||
collaborative bitcoin transactions called payjoins. | ||
<br /> | ||
<br /> | ||
> Queue up lightning channels, a new one opens whenever you | ||
recieve an onchain bitcoin payment. | ||
</code> | ||
</p> | ||
<br /> | ||
<p> | ||
<b> Building the E-Cash Economy </b> | ||
<br /> | ||
<code> | ||
> Creating privacy services for various forms of bitcoin. | ||
<br /> | ||
<br /> | ||
> Focus on developing the economies which use blinded ecash | ||
from federated chaumian mints. | ||
</code> | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<script> | ||
function shuffleArray(array) { | ||
for (var i = array.length - 1; i > 0; i--) { | ||
var j = Math.floor(Math.random() * (i + 1)); | ||
var temp = array[i]; | ||
array[i] = array[j]; | ||
array[j] = temp; | ||
} | ||
} | ||
function rotate_members() { | ||
var members_arr = [ | ||
'Dan <small>aka</small> <a href="https://github.com/DanGould">BITGOULD</a>', | ||
'Nick <small>aka</small> <a href="https://github.com/nickfarrow">UTXOCLUB</a>', | ||
'Armin <small>aka</small> <a href="https://github.com/0xBEEFCAF3">0xBEEFCAF3</a>', | ||
]; | ||
var shuff_members = shuffleArray(members_arr); | ||
document.getElementById("members").innerHTML = | ||
members_arr.join("<br>"); | ||
} | ||
|
||
rotate_members(); | ||
rotate_interval = setInterval(function () { | ||
rotate_members(); | ||
}, 1000); | ||
</script> | ||
<style> | ||
html, | ||
body { | ||
background: conic-gradient(from 0deg at 0% 0%, rgb(5, 0, 2), rgb(0, 56, 73)); | ||
color: rgb(220, 220, 220); | ||
text-align: left; | ||
width: 100%; | ||
} | ||
|
||
.vertical-center { | ||
min-height: 100%; | ||
min-height: 100vh; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
h1 { | ||
font-weight: 1000; | ||
font-size: 4em; | ||
background-image: conic-gradient(from 0deg at 0% 0%, rgb(255, 174, 0), rgb(0, 255, 242)); | ||
color: transparent; | ||
background-clip: text; | ||
-webkit-background-clip: text; | ||
} | ||
|
||
h2 { | ||
font-weight: 600; | ||
background-image: conic-gradient(from 0deg at 0% 0%, rgb(255, 174, 0), rgb(0, 255, 242)); | ||
color: transparent; | ||
background-clip: text; | ||
-webkit-background-clip: text; | ||
} | ||
|
||
h3 { | ||
font-weight: 600; | ||
background-image: conic-gradient(from 0deg at 0% 0%, rgb(255, 174, 0), rgb(0, 255, 242)); | ||
color: transparent; | ||
background-clip: text; | ||
-webkit-background-clip: text; | ||
} | ||
|
||
p { | ||
font-size: 1.5em; | ||
font-weight: 400; | ||
background-image: conic-gradient(from 0deg at 0% 0%, rgb(175, 26, 26), rgba(208, 255, 0, 0.986)); | ||
color: transparent; | ||
background-clip: text; | ||
-webkit-background-clip: text; | ||
} | ||
|
||
a { | ||
text-decoration-color: rgb(0, 255, 234); | ||
color:#016cc4 | ||
} | ||
|
||
li { | ||
font-size: 1.5em; | ||
font-weight: 400; | ||
} | ||
|
||
code { | ||
color: rgb(166, 219, 18); | ||
} | ||
</style> | ||
</html> |