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
76 changes: 25 additions & 51 deletions menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Port Williams Tap Room Menu</title>
<title>The Port Taproom Menu</title>
<style>
@page {
size: letter;
margin: 0.5in;
size: 5.5in 8.5in;
margin: 0.4in;
}

* {
Expand All @@ -20,9 +20,9 @@
font-family: Georgia, 'Times New Roman', serif;
color: #1a1a1a;
background: #ffffff;
max-width: 8.5in;
max-width: 5.5in;
margin: 0 auto;
padding: 0.5in;
padding: 0.4in;
}

/* Header */
Expand All @@ -34,7 +34,7 @@
}

.header h1 {
font-size: 34px;
font-size: 26px;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
Expand All @@ -56,7 +56,7 @@
gap: 40px;
padding: 10px 0;
margin-bottom: 22px;
font-size: 15px;
font-size: 13px;
font-weight: 700;
letter-spacing: 1px;
color: #1a1a1a;
Expand All @@ -73,7 +73,7 @@
}

.section-title {
font-size: 20px;
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 3px;
Expand All @@ -86,7 +86,7 @@
/* Beer list */
.beer-list {
columns: 2;
column-gap: 36px;
column-gap: 24px;
}

.beer-item {
Expand All @@ -101,7 +101,7 @@
}

.beer-name {
font-size: 15px;
font-size: 13px;
font-weight: 700;
color: #c0392b;
}
Expand All @@ -114,41 +114,20 @@
}

.beer-desc {
font-size: 11.5px;
font-size: 10.5px;
color: #444;
line-height: 1.45;
margin-top: 2px;
}

/* Cider names use a different accent colour */
.cider-list .beer-name {
color: #d4782e;
}

/* Seltzer names use a different accent colour */
.seltzer-list .beer-name {
color: #2980b9;
}

.cider-list {
columns: 2;
column-gap: 36px;
column-gap: 24px;
}

.seltzer-list {
columns: 2;
column-gap: 36px;
}

/* Footer */
.footer {
text-align: center;
border-top: 2px solid #2d3a4a;
padding-top: 14px;
margin-top: 24px;
font-size: 12px;
color: #555;
letter-spacing: 1px;
column-gap: 24px;
}

/* Print styles */
Expand All @@ -164,20 +143,19 @@
<body>

<div class="header">
<h1>Port Williams Tap Room</h1>
<h1>The Port Taproom</h1>
<div class="subtitle">Craft Beer &middot; Cider &middot; Seltzer</div>
</div>

<div class="pricing-bar">
<span>12oz &mdash; $6</span>
<span>16oz &mdash; $7</span>
<span>20oz &mdash; $8</span>
<span style="font-weight: 400; font-size: 12px; color: #666;">(+ tax)</span>
</div>

<!-- BEER -->
<div class="section">
<div class="section-title">Beer</div>
<div class="section-title">Beer &middot; Brig&amp;Barq</div>
<div class="beer-list">

<div class="beer-item">
Expand Down Expand Up @@ -257,7 +235,7 @@ <h1>Port Williams Tap Room</h1>

<!-- CIDER -->
<div class="section">
<div class="section-title">Cider</div>
<div class="section-title">Cider &middot; Moonrise Ridge</div>
<div class="cider-list">

<div class="beer-item">
Expand All @@ -284,14 +262,6 @@ <h1>Port Williams Tap Room</h1>
<div class="beer-desc">A well-balanced medium dry cider showcasing delicate pear, apple, and citrus notes for a refreshing and versatile sip.</div>
</div>

<div class="beer-item">
<div class="beer-header">
<span class="beer-name">Fresh Strawberry</span>
<span class="beer-abv">5.3% ABV</span>
</div>
<div class="beer-desc">A medium dry cider with a delightful balance of soft strawberry notes and subtle apple undertones, offering a crisp finish.</div>
</div>

<div class="beer-item">
<div class="beer-header">
<span class="beer-name">Juicy Peach</span>
Expand All @@ -313,7 +283,7 @@ <h1>Port Williams Tap Room</h1>

<!-- SELTZER -->
<div class="section">
<div class="section-title">Seltzer</div>
<div class="section-title">Seltzer &middot; Luna</div>
<div class="seltzer-list">

<div class="beer-item">
Expand All @@ -332,11 +302,15 @@ <h1>Port Williams Tap Room</h1>
<div class="beer-desc">Only 1 gram of sugar, inspired by a classic gin fizz, providing a crisp, effervescent, and refreshing experience.</div>
</div>

</div>
</div>
<div class="beer-item">
<div class="beer-header">
<span class="beer-name">Hard Iced Tea</span>
<span class="beer-abv">5.5% ABV</span>
</div>
<div class="beer-desc">Made with vodka and real lemon tea for a smooth, refreshing taste with a clean finish.</div>
</div>

<div class="footer">
All prices are plus applicable tax &middot; Please drink responsibly
</div>
</div>

</body>
Expand Down