File size: 8,187 Bytes
fa881a6 | 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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Martino'z Pizza - Menu</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #ffffff;
}
.status-bar {
height: 90px;
padding: 24px 32px 0 32px;
color: #5f5f5f; font-size: 32px;
}
.header {
display: flex; align-items: center;
padding: 16px 48px 0 48px;
}
.brand-logo {
width: 120px; height: 120px; border-radius: 60px;
background: #E0E0E0; border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 26px; margin-right: 28px;
}
.brand-title {
flex: 1;
}
.brand-title .main {
font-weight: 800; font-size: 56px; letter-spacing: 1px; color: #2e2e2e;
}
.brand-title .sub {
font-size: 26px; color: #2e2e2e; letter-spacing: 6px;
}
.brand-title .divider {
display: inline-block; width: 120px; height: 2px; background: #8c8c8c; margin: 0 12px;
}
.location-row {
display: flex; align-items: center; justify-content: space-between;
padding: 12px 48px 0 48px;
}
.location-left { display: flex; align-items: flex-start; }
.store-icon { width: 48px; height: 48px; margin-right: 20px; }
.location-text .city { color: #8a8a8a; font-size: 32px; }
.location-text .branch { font-size: 40px; font-weight: 700; color: #222; display: inline-flex; align-items: center; }
.dropdown {
width: 28px; height: 28px; margin-left: 12px;
}
.call-btn {
border: 2px solid #2f6a39; color: #2f6a39; background: #f6fff7;
padding: 20px 32px; border-radius: 16px; font-size: 36px; font-weight: 700;
display: inline-flex; align-items: center; gap: 16px;
box-shadow: 0 4px 0 #2f6a39;
}
.call-btn svg { width: 40px; height: 40px; }
.tabs {
display: flex; gap: 20px; padding: 24px 48px;
}
.tab {
flex: 1; text-align: center; padding: 28px 0; border-radius: 16px;
font-size: 38px; font-weight: 800;
}
.tab.active { background: #3E6E3B; color: #fff; }
.tab.inactive { background: #eaeaea; color: #8d8d8d; }
.banner {
margin: 8px 48px 24px 48px; border-radius: 24px; overflow: hidden;
height: 300px;
}
.banner .img {
width: 100%; height: 100%;
background: #E0E0E0; border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 36px;
}
.menu-header {
display: flex; align-items: center; justify-content: space-between;
padding: 12px 48px 20px 48px;
}
.menu-title {
font-size: 54px; font-weight: 800; color: #333;
}
.search-pill {
display: inline-flex; align-items: center; gap: 12px;
background: #efefef; color: #5b5b5b; border-radius: 18px;
padding: 16px 24px; font-size: 36px; font-weight: 700;
}
.search-pill svg { width: 44px; height: 44px; }
.cards {
display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
padding: 0 48px 180px 48px;
}
.card {
position: relative; height: 480px; border-radius: 24px; overflow: hidden;
}
.card .img {
width: 100%; height: 100%;
background: #E0E0E0; border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center; color: #757575; font-size: 34px;
}
.card .label {
position: absolute; left: 24px; bottom: 24px; color: #fff;
text-shadow: 0 2px 2px rgba(0,0,0,0.4);
}
.card .label .title { font-size: 52px; font-weight: 900; letter-spacing: 1px; }
.card .label .subtitle { font-size: 30px; font-weight: 700; }
/* Bottom navigation */
.bottom-bar {
position: absolute; left: 24px; right: 24px; bottom: 110px;
height: 160px; background: #ffffff; border-radius: 36px;
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
display: flex; align-items: center; justify-content: space-around;
padding: 0 16px;
}
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.nav-item .icon { width: 56px; height: 56px; }
.nav-item .label { font-size: 30px; color: #6d6d6d; font-weight: 700; }
.nav-item.active .label { color: #3E6E3B; }
.nav-item.active svg path { fill: #3E6E3B; }
.home-handle {
position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
width: 340px; height: 16px; background: #000; opacity: 0.15; border-radius: 12px;
}
</style>
</head>
<body>
<div id="render-target">
<div class="status-bar">
2:02 • • •
</div>
<div class="header">
<div class="brand-logo">[IMG: Pizza Logo]</div>
<div class="brand-title">
<div class="main">MARTINO’Z</div>
<div class="sub"><span class="divider"></span>PIZZA<span class="divider"></span></div>
</div>
</div>
<div class="location-row">
<div class="location-left">
<svg class="store-icon" viewBox="0 0 24 24">
<path d="M3 9l2-3h14l2 3v1h-2v9H5v-9H3V9zm4 2h10v7H7v-7zm1-5l-1.5 2h11L16 6H8z" fill="#333"/>
</svg>
<div class="location-text">
<div class="city">Indore</div>
<div class="branch">Indore (Bhawarkua)
<svg class="dropdown" viewBox="0 0 24 24">
<path d="M7 10l5 5 5-5" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<div class="call-btn">
<svg viewBox="0 0 24 24">
<path d="M6 2l4 2-2 3c1 2 3 4 5 5l3-2 2 4-3 2c-6-2-11-7-13-13L6 2z" fill="#2f6a39"/>
</svg>
CALL OUTLET
</div>
</div>
<div class="tabs">
<div class="tab active">DELIVERY</div>
<div class="tab inactive">PICK UP</div>
<div class="tab inactive">DINE-IN</div>
</div>
<div class="banner">
<div class="img">[IMG: Food Banner - "Look On The Bright Side"]</div>
</div>
<div class="menu-header">
<div class="menu-title">MENU</div>
<div class="search-pill">
<svg viewBox="0 0 24 24">
<circle cx="10" cy="10" r="6" stroke="#666" stroke-width="2" fill="none"/>
<path d="M14.5 14.5L20 20" stroke="#666" stroke-width="2" stroke-linecap="round"/>
</svg>
Search
</div>
</div>
<div class="cards">
<div class="card">
<div class="img">[IMG: Two Pizzas Top View]</div>
<div class="label">
<div class="title">BOGO</div>
<div class="subtitle">29 Varieties Available</div>
</div>
</div>
<div class="card">
<div class="img">[IMG: Cheese Pizza]</div>
<div class="label">
<div class="title">PIZZA</div>
<div class="subtitle">38 Varieties Available</div>
</div>
</div>
<div class="card">
<div class="img">[IMG: Garlic Breads]</div>
<div class="label">
<div class="title">GARLIC BREADS</div>
<div class="subtitle">11 Varieties Available</div>
</div>
</div>
<div class="card">
<div class="img">[IMG: Bruschetta]</div>
<div class="label">
<div class="title">BRUSCHETTA</div>
<div class="subtitle">9 Varieties Available</div>
</div>
</div>
</div>
<div class="bottom-bar">
<div class="nav-item active">
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 3l9 8h-3v8H6v-8H3l9-8z" fill="#9e9e9e"/>
</svg>
<div class="label">Home</div>
</div>
<div class="nav-item">
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 8a4 4 0 110 8 4 4 0 010-8zm0-6l2 3-2 1-2-1 2-3zm9 9l-3 2 1 2 3-2-1-2zM3 11l1 2-3 2 1-3 1-1z" fill="#9e9e9e"/>
</svg>
<div class="label">Offers</div>
</div>
<div class="nav-item">
<svg class="icon" viewBox="0 0 24 24">
<path d="M6 7h12l-2 12H8L6 7zm3-3h6v3H9V4z" fill="#9e9e9e"/>
</svg>
<div class="label">Cart</div>
</div>
<div class="nav-item">
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 12a5 5 0 100-10 5 5 0 000 10zm0 2c-5 0-9 3-9 6v2h18v-2c0-3-4-6-9-6z" fill="#9e9e9e"/>
</svg>
<div class="label">Account</div>
</div>
</div>
<div class="home-handle"></div>
</div>
</body>
</html> |