Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,35 @@
column-gap: 24px;
}

/* Logo */
.logo {
margin-bottom: 10px;
}

.logo img {
max-height: 60px;
}

/* Footer */
.footer {
text-align: center;
margin-top: 24px;
padding-top: 14px;
border-top: 1px solid #ccc;
}

.footer p {
font-size: 11px;
color: #555;
margin-bottom: 8px;
letter-spacing: 1px;
}

.footer canvas {
display: block;
margin: 0 auto;
}

/* Print styles */
@media print {
body {
Expand All @@ -138,10 +167,14 @@
}
}
</style>
<script src="https://cdn.jsdelivr.net/npm/qrcode@1.5.4/build/qrcode.min.js"></script>
</head>
<body>

<div class="header">
<div class="logo">
<img src="brig&Barqlogo.png" alt="Brig &amp; Barq Logo">
</div>
<h1>The Port Taproom</h1>
<div class="subtitle">On Tap</div>
</div>
Expand Down Expand Up @@ -304,5 +337,19 @@ <h1>The Port Taproom</h1>
</div>
</div>

<!-- QR CODE -->
<div class="footer">
<p>Visit us online</p>
<canvas id="qrcode"></canvas>
</div>

<script>
QRCode.toCanvas(document.getElementById('qrcode'), 'https://thesarsfieldgroup.com', {
width: 90,
margin: 1,
color: { dark: '#2d3a4a', light: '#ffffff' }
});
</script>

</body>
</html>