AndroidCode / code /10071 /10071_13.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Add event</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #FFFFFF;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
color: #111827;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 120px;
background: #12171A;
color: #E5E7EB;
display: flex;
align-items: center;
padding: 0 36px;
box-sizing: border-box;
font-size: 36px;
letter-spacing: 1px;
}
.status-left { flex: 1; }
.status-right {
display: flex;
align-items: center;
gap: 22px;
}
.status-dot {
width: 18px; height: 18px; border-radius: 50%; background: #D1D5DB; opacity: .9;
}
.status-pill {
width: 34px; height: 20px; border-radius: 10px; background: #D1D5DB;
}
/* App bar */
.app-bar {
position: absolute;
top: 120px;
left: 0;
width: 100%;
height: 160px;
background: #FFFFFF;
box-shadow: 0 2px 6px rgba(0,0,0,0.12);
display: flex;
align-items: center;
padding: 0 30px;
box-sizing: border-box;
}
.back-btn {
width: 96px; height: 96px;
display: flex; align-items: center; justify-content: center;
margin-right: 18px;
}
.title {
font-size: 64px;
font-weight: 700;
color: #0F172A;
}
.list {
position: absolute;
top: 280px; /* below app bar */
left: 0;
right: 0;
bottom: 140px; /* above gesture bar */
overflow: hidden;
background: #FFFFFF;
}
.list-item {
height: 150px;
display: flex;
align-items: center;
padding: 0 30px;
box-sizing: border-box;
font-size: 48px;
color: #111827;
border-bottom: 2px solid #E5EAF0;
}
/* Gesture bar */
.gesture-area {
position: absolute;
left: 0; right: 0; bottom: 0;
height: 140px;
background: #000000;
display: flex;
align-items: center;
justify-content: center;
}
.gesture-pill {
width: 320px;
height: 12px;
background: #E5E7EB;
border-radius: 8px;
opacity: 0.9;
}
/* SVG icon sizing helper */
svg { display: block; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">6:02</div>
<div class="status-right">
<div class="status-dot"></div>
<div class="status-dot" style="width: 22px; height: 22px;"></div>
<div class="status-dot"></div>
<div class="status-dot"></div>
<div class="status-pill"></div>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<div class="back-btn" aria-label="Close">
<!-- X icon -->
<svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#111827" stroke-width="2.2" stroke-linecap="round">
<path d="M6 6l12 12M18 6L6 18"/>
</svg>
</div>
<div class="title">Add event</div>
</div>
<!-- List -->
<div class="list">
<div class="list-item">Flight</div>
<div class="list-item">Stay</div>
<div class="list-item">Car rental</div>
<div class="list-item">Train</div>
<div class="list-item">Restaurant</div>
<div class="list-item">Custom event</div>
</div>
<!-- Gesture Bar -->
<div class="gesture-area">
<div class="gesture-pill"></div>
</div>
</div>
</body>
</html>