Skip to content

Instantly share code, notes, and snippets.

@Maeva0201
Maeva0201 / index.html
Created April 24, 2026 10:40
涵藝烘焙坊點餐系統
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>涵藝烘焙坊今日手作選單</title>
<style>
:root { --main-brown: #8d6e63; --light-brown: #fcfaf7; --dark-text: #4a3728; }
body { font-family: -apple-system, sans-serif; padding: 20px; background-color: var(--light-brown); color: var(--dark-text); }
h2 { text-align: center; color: var(--main-brown); border-bottom: 2px solid #d7ccc8; padding-bottom: 15px; }
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>線上點餐系統</title>
<style>
body { font-family: sans-serif; padding: 20px; background-color: #f4f4f4; }
.item { background: white; padding: 15px; margin-bottom: 10px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; }
button { background-color: #00B900; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; }
.order-btn { width: 100%; padding: 15px; font-size: 18px; margin-top: 20px; }