Skip to content

Commit 2bd78fa

Browse files
Merge pull request #5 from jackpwebb-coder/claude/general-session-DgOCE
Restyle menu to match product sheet design
2 parents 57987a7 + 86effdb commit 2bd78fa

File tree

1 file changed

+37
-33
lines changed

1 file changed

+37
-33
lines changed

menu.html

Lines changed: 37 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919
body {
2020
font-family: Georgia, 'Times New Roman', serif;
21-
color: #e8e8e8;
22-
background: #2d3a4a;
21+
color: #1a1a1a;
22+
background: #ffffff;
2323
max-width: 8.5in;
2424
margin: 0 auto;
2525
padding: 0.5in;
@@ -28,59 +28,59 @@
2828
/* Header */
2929
.header {
3030
text-align: center;
31-
border-bottom: 3px double #d4782e;
32-
padding-bottom: 20px;
33-
margin-bottom: 28px;
31+
border-bottom: 2px solid #2d3a4a;
32+
padding-bottom: 18px;
33+
margin-bottom: 20px;
3434
}
3535

3636
.header h1 {
37-
font-size: 36px;
37+
font-size: 34px;
3838
font-weight: 700;
39-
letter-spacing: 4px;
39+
letter-spacing: 3px;
4040
text-transform: uppercase;
41-
margin-bottom: 10px;
42-
color: #ffffff;
41+
margin-bottom: 6px;
42+
color: #2d3a4a;
4343
}
4444

4545
.header .subtitle {
4646
font-size: 13px;
4747
letter-spacing: 2px;
4848
text-transform: uppercase;
49-
color: #d4782e;
49+
color: #555;
5050
}
5151

5252
/* Pricing bar */
5353
.pricing-bar {
5454
display: flex;
5555
justify-content: center;
5656
gap: 40px;
57-
background: #d4782e;
58-
color: #fff;
5957
padding: 10px 0;
60-
margin-bottom: 28px;
61-
font-size: 14px;
58+
margin-bottom: 22px;
59+
font-size: 15px;
60+
font-weight: 700;
6261
letter-spacing: 1px;
63-
border-radius: 4px;
62+
color: #1a1a1a;
63+
border-bottom: 1px solid #ccc;
6464
}
6565

6666
.pricing-bar span {
67-
font-weight: 600;
67+
font-weight: 700;
6868
}
6969

7070
/* Section */
7171
.section {
72-
margin-bottom: 26px;
72+
margin-bottom: 24px;
7373
}
7474

7575
.section-title {
7676
font-size: 20px;
7777
font-weight: 700;
7878
text-transform: uppercase;
7979
letter-spacing: 3px;
80-
border-bottom: 1px solid #d4782e;
81-
padding-bottom: 6px;
80+
border-bottom: 1px solid #999;
81+
padding-bottom: 5px;
8282
margin-bottom: 14px;
83-
color: #ffffff;
83+
color: #2d3a4a;
8484
}
8585

8686
/* Beer list */
@@ -103,24 +103,33 @@
103103
.beer-name {
104104
font-size: 15px;
105105
font-weight: 700;
106-
color: #ffffff;
106+
color: #c0392b;
107107
}
108108

109109
.beer-abv {
110110
font-size: 12px;
111111
font-weight: 600;
112-
color: #d4782e;
112+
color: #333;
113113
white-space: nowrap;
114114
}
115115

116116
.beer-desc {
117117
font-size: 11.5px;
118-
color: #b0b8c4;
118+
color: #444;
119119
line-height: 1.45;
120120
margin-top: 2px;
121121
}
122122

123-
/* Cider and seltzer use single column since fewer items */
123+
/* Cider names use a different accent colour */
124+
.cider-list .beer-name {
125+
color: #d4782e;
126+
}
127+
128+
/* Seltzer names use a different accent colour */
129+
.seltzer-list .beer-name {
130+
color: #2980b9;
131+
}
132+
124133
.cider-list {
125134
columns: 2;
126135
column-gap: 36px;
@@ -134,11 +143,11 @@
134143
/* Footer */
135144
.footer {
136145
text-align: center;
137-
border-top: 3px double #d4782e;
146+
border-top: 2px solid #2d3a4a;
138147
padding-top: 14px;
139-
margin-top: 28px;
148+
margin-top: 24px;
140149
font-size: 12px;
141-
color: #b0b8c4;
150+
color: #555;
142151
letter-spacing: 1px;
143152
}
144153

@@ -149,11 +158,6 @@
149158
-webkit-print-color-adjust: exact;
150159
print-color-adjust: exact;
151160
}
152-
153-
.pricing-bar {
154-
-webkit-print-color-adjust: exact;
155-
print-color-adjust: exact;
156-
}
157161
}
158162
</style>
159163
</head>
@@ -168,7 +172,7 @@ <h1>Port Williams Tap Room</h1>
168172
<span>12oz &mdash; $6</span>
169173
<span>16oz &mdash; $7</span>
170174
<span>20oz &mdash; $8</span>
171-
<span style="font-weight: 400; font-size: 12px; opacity: 0.85;">(+ tax)</span>
175+
<span style="font-weight: 400; font-size: 12px; color: #666;">(+ tax)</span>
172176
</div>
173177

174178
<!-- BEER -->

0 commit comments

Comments
 (0)