-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
210 lines (191 loc) · 7.31 KB
/
Copy pathindex.html
File metadata and controls
210 lines (191 loc) · 7.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WAFU-TRÜFFEL RETRO PAGE</title>
<style>
/* Define the specified colors as CSS variables */
:root {
--color-bg: #FFFFFF;
--color-text: #000000;
--color-green: #A2FF9A; /* Semi-light Green */
--color-orange: #FF9933;
--color-yellow: #FFFF00;
--color-red: #FF3333;
--color-shadow: #000000;
}
body {
font-family: 'Courier New', monospace;
background-color: var(--color-green);
color: var(--color-text);
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
min-height: 100vh;
}
.container {
width: 90%;
max-width: 800px;
background-color: var(--color-bg);
border: 4px solid var(--color-text);
box-shadow: 10px 10px 0 var(--color-shadow); /* Chunky black shadow for the main container */
padding: 15px;
}
h1 {
color: var(--color-red);
text-align: center;
border-bottom: 2px dashed var(--color-orange);
padding-bottom: 10px;
}
h2 {
font-size: 1.2em;
color: var(--color-orange);
background-color: var(--color-yellow);
padding: 5px;
margin-top: 20px;
border: 2px solid var(--color-text);
}
/* 4 Shadowy Buttons Styling */
.button-bar {
display: flex;
justify-content: space-around;
gap: 10px;
margin-bottom: 20px;
}
.retro-button {
flex-grow: 1;
padding: 10px 5px;
font-family: inherit;
font-weight: bold;
text-transform: uppercase;
color: var(--color-text);
background-color: var(--color-yellow);
border: 2px solid var(--color-text);
cursor: pointer;
/* Creates the required shadowy, 3D/chunky effect */
box-shadow: 4px 4px 0 var(--color-shadow);
transition: all 0.1s;
}
.retro-button:hover {
background-color: var(--color-orange);
box-shadow: 6px 6px 0 var(--color-shadow);
}
.retro-button:active {
/* Pressed effect */
box-shadow: 1px 1px 0 var(--color-shadow);
transform: translate(3px, 3px);
}
/* 6 Thumbnail Pictures Styling */
.thumbnail-container {
display: flex;
flex-direction: column; /* Stacks items below each other */
gap: 15px;
}
.thumbnail-item {
display: flex;
align-items: center;
border: 2px solid var(--color-text);
background-color: #F0F0F0;
padding: 5px;
}
.thumbnail-image {
width: 100px;
height: 75px;
flex-shrink: 0;
margin-right: 15px;
border: 1px solid var(--color-text);
/* Use placeholder images related to the recipe for context */
background-size: cover;
background-position: center;
background-color: var(--color-red);
color: var(--color-bg);
display: flex;
justify-content: center;
align-items: center;
font-size: 10px;
text-align: center;
font-weight: bold;
}
/* Placeholder image links (using picsum.photos for generic food/dish images) */
.img-1 { background-image: url('https://picsum.photos/seed/salmon1/100/75'); }
.img-2 { background-image: url('https://picsum.photos/seed/truffle2/100/75'); }
.img-3 { background-image: url('https://picsum.photos/seed/sushi3/100/75'); }
.img-4 { background-image: url('https://picsum.photos/seed/yuzu4/100/75'); }
.img-5 { background-image: url('https://picsum.photos/seed/sauce5/100/75'); }
.img-6 { background-image: url('https://picsum.photos/seed/plate6/100/75'); }
.thumbnail-text h3 {
margin: 0 0 5px 0;
color: var(--color-orange);
font-size: 1.1em;
}
.thumbnail-text p {
margin: 0;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="container">
<h1>[ MOCHI RECIPE DATA-STREAM V1.2 ]</h1>
<div class="button-bar">
<button class="retro-button" onclick="handleButtonClick('Home')">Home</button>
<button class="retro-button" onclick="handleButtonClick('The Recipe')">The Recipe</button>
<button class="retro-button" onclick="handleButtonClick('Ingredients')">Ingredients</button>
<button class="retro-button" onclick="handleButtonClick('Contact')">Contact</button>
</div>
<h2>:: Lachs Wafu Trüffel Related ::</h2>
<div class="thumbnail-container">
<div class="thumbnail-item">
<div class="thumbnail-image img-1">SALMON</div>
<div class="thumbnail-text">
<h3>Filet Preparation</h3>
<p>Step 1: Filet the salmon and remove pin bones carefully.</p>
</div>
</div>
<div class="thumbnail-item">
<div class="thumbnail-image img-2">SAKE WAFU</div>
<div class="thumbnail-text">
<h3>Sake Wafu Dressing</h3>
<p>Step 2: Mix Yuzu Truffle Dressing (1:1 ratio) into Sakura Dressing.</p>
</div>
</div>
<div class="thumbnail-item">
<div class="thumbnail-image img-3">TRUFFLE MAYO</div>
<div class="thumbnail-text">
<h3>Mochi Truffle Mayo</h3>
<p>The key to richness. Use a generous amount for garnish.</p>
</div>
</div>
<div class="thumbnail-item">
<div class="thumbnail-image img-4">SLICING</div>
<div class="thumbnail-text">
<h3>Thin Slices</h3>
<p>Cut salmon thinly (3-4mm) against the grain before serving.</p>
</div>
</div>
<div class="thumbnail-item">
<div class="thumbnail-image img-5">GARNISH</div>
<div class="thumbnail-text">
<h3>Suggested Garnishes</h3>
<p>Add some fresh chives or microgreens for color and crunch.</p>
</div>
</div>
<div class="thumbnail-item">
<div class="thumbnail-image img-6">DRINK PAIRING</div>
<div class="thumbnail-text">
<h3>Kikko Mule Pairing</h3>
<p>A recommended drink to enjoy alongside this sophisticated dish.</p>
</div>
</div>
</div>
</div>
<script>
function handleButtonClick(buttonName) {
// A basic function to satisfy the JS requirement
alert("RETRO BUTTON CLICKED! You navigated to: " + buttonName + ".\n\n[ACCESS GRANTED]");
}
</script>
</body>
</html>