Skip to content

Commit

Permalink
Merge pull request #49 from nickfarrow/ui-additions
Browse files Browse the repository at this point in the history
Add favicon and another experimental warning
  • Loading branch information
DanGould authored Nov 8, 2022
2 parents f01b22e + 43aeafd commit f7f9a9d
Show file tree
Hide file tree
Showing 16 changed files with 90 additions and 1 deletion.
Binary file added static/favicons/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/favicons/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/favicons/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions static/favicons/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file added static/favicons/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/favicons/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/favicons/favicon.ico
Binary file not shown.
Binary file added static/favicons/mstile-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/favicons/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/favicons/mstile-310x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/favicons/mstile-310x310.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/favicons/mstile-70x70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions static/favicons/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions static/favicons/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
12 changes: 11 additions & 1 deletion static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,22 @@
<!-- having trouble getting the right path on both umbrel and local.. -->
<link rel="stylesheet" href="/pj/static/style.css">
<link rel="stylesheet" href="style.css">
<link rel="apple-touch-icon" sizes="180x180" href="/pj/static/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/pj/static/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/pj/static/favicons/favicon-16x16.png">
<link rel="manifest" href="/pj/static/favicons/site.webmanifest">
<link rel="mask-icon" href="/pj/static/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/pj/static/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/pj/static/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<title>nolooking // Lightning PayJoin</title>
</head>
<body dark-mode>
<br>
<br>
<header class="center">
<h1>👻 &nbsp;Lightning PayJoin&nbsp; 👻</h1>
<a href="https://nolooking.chaincase.app/" target="_blank" style="text-decoration:none"><h1>👻 &nbsp;Lightning PayJoin&nbsp; 👻</h1></a>
<h3 style="color: orange;">🎃 Halloween Alpha [experimental] | Avoid sp👀ks</h3>
<h2>Queue batches of lightning channels to open in a single transaction</h2>
</header>
Expand Down Expand Up @@ -65,6 +74,7 @@ <h2>Queue batches of lightning channels to open in a single transaction</h2>
</div>
<output id="queued" class="invisible">
<h2>PayJoin here to open these channels</h2>
<p class="warning">⚠ This software is still extremely experimental and has not been vetted, use at your own risk ⚠</code>
<div id="qrcode" class="center-axyz"></div>
<a href="" id="bip21"></a>
<p>Please use <a href="https://en.bitcoin.it/wiki/PayJoin_adoption" target="_blank">a wallet that supports</a> BIP 78 <a href="https://bitcoinmagazine.com/culture/blockchain-analysis-about-get-harder-p2ep-enters-testing-phase" target="blank">P2EP</a> PayJoins!</p>
Expand Down
10 changes: 10 additions & 0 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,13 @@ input {
.invisible {
display: none;
}

.warning {
text-align: center;
border: 1px solid var(--codeBorderColor,var(--inputBorderColor));
color: yellow;
border-radius: var(--inputRadius);
font-size: 1.3rem;
font-family: var(--fontMono);
white-space: nowrap;
}

0 comments on commit f7f9a9d

Please sign in to comment.