Skip to content

Commit

Permalink
Update lnurl.html
Browse files Browse the repository at this point in the history
  • Loading branch information
d4tis authored Feb 12, 2024
1 parent 662498f commit 5de5b9a
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion lnurl.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
border: 6px solid #444; /* Dark gray border */
border-radius: 20px; /* Slightly curved edges */
}
.lnurl-link, .copy-button {
.lnurl-link {
padding: 10px 20px;
background-color: #333;
color: #fff;
Expand All @@ -46,6 +46,19 @@
text-decoration: none; /* Remove underline for link */
font-weight: bold; /* Ensure Ubuntu bold font */
}
.copy-button {
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
border-radius: 20px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease, color 0.3s ease;
margin: 5px; /* Added margin for spacing */
font-family: 'Ubuntu', Arial, sans-serif; /* Specify Ubuntu font for the button */
font-weight: bold; /* Ensure Ubuntu bold font */
}
.lnurl-link:hover, .copy-button:hover {
background-color: #666;
}
Expand Down

0 comments on commit 5de5b9a

Please sign in to comment.