diff options
| -rw-r--r-- | index.html | 23 | ||||
| -rw-r--r-- | old_landing.html | 19 | ||||
| -rw-r--r-- | styles.scss | 8 |
3 files changed, 36 insertions, 14 deletions
@@ -3,17 +3,20 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>QR Code Menu</title> - <link rel="stylesheet" href="styles.css"> + <title>Leave a Tip</title> + <link rel="stylesheet" href="../styles.css"> </head> <body> - <div class="menu-container"> - <ul class="menu-wrapper"> - <li><a href="contact/contact.vcf" download>Contact</a></li> - <li><a href="wip.html">Profile</a></li> - <li><a href="wip.html">Services</a></li> - <li><a href="tips/tips.html">Tips</a></li> - </ul> - </div> + <section class="landing-page"> + <div class="menu-container"> + <ul class="menu-wrapper"> + <li><a href="https://cash.app/$evanacohencash" class="button">CashApp</a></li> + <li><a href="venmo://paycharge?audience=private&amount=25¬e=Super%20Awesome%20Ski%20Instructor!&recipients=%2Cevanacohen&txn=pay" class="button">Venmo</a></li> + <li><a href="https://paypal.me/evanacohen?country.x=US&locale.x=en_US" class="button">PayPal</a></li> + </ul> + </div> + </section> </body> </html> + + diff --git a/old_landing.html b/old_landing.html new file mode 100644 index 0000000..92e5fa0 --- /dev/null +++ b/old_landing.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>QR Code Menu</title> + <link rel="stylesheet" href="styles.css"> +</head> +<body> + <div class="menu-container"> + <ul class="menu-wrapper"> + <li><a href="contact/contact.vcf" download>Contact</a></li> + <li><a href="wip.html">Profile</a></li> + <li><a href="wip.html">Services</a></li> + <li><a href="tips/tips.html">Leave Tip</a></li> + </ul> + </div> +</body> +</html> diff --git a/styles.scss b/styles.scss index 1ee9988..c41f4b2 100644 --- a/styles.scss +++ b/styles.scss @@ -113,10 +113,10 @@ small {font-size: 0.750rem; /* 12px */} } a { - text-decoration: none; - font-weight: 500; - font-size: 15vmin; - color: $foreground-color; // Assuming you want to use your color variable + text-decoration: none; + font-weight: 500; + font-size: 13vmin; + color: $foreground-color; } } } |
