AndroidCode / code /10155 /10155_5.html
yhzheng1031's picture
Add files using upload-large-folder tool
ff1f000 verified
raw
history blame
9.83 kB
<html>
<head>
<meta charset="UTF-8">
<title>Mobile UI - Calendar Event</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #121212;
color: #EDEDED;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 85px;
padding: 18px 28px;
box-sizing: border-box;
color: #CFCFCF;
font-size: 34px;
display: flex;
align-items: center;
justify-content: space-between;
}
.status-left { display: flex; align-items: center; gap: 18px; }
.status-right { display: flex; align-items: center; gap: 18px; }
.dot { width: 8px; height: 8px; background: #9E9E9E; border-radius: 50%; display: inline-block; }
/* App header */
.app-header {
position: absolute;
top: 85px;
left: 0;
width: 1080px;
height: 180px;
padding: 22px 28px;
box-sizing: border-box;
display: flex;
align-items: center;
gap: 24px;
}
.icon-btn {
width: 70px;
height: 70px;
border-radius: 70px;
display: flex;
align-items: center;
justify-content: center;
color: #D0C9D9;
background: transparent;
}
.title-input {
flex: 1;
font-size: 70px;
font-weight: 600;
color: #EDE0FF;
border: none;
background: transparent;
outline: none;
}
.save-pill {
background: #C9A6FF;
color: #1A1325;
padding: 22px 34px;
border-radius: 38px;
font-weight: 700;
font-size: 42px;
}
/* Account block */
.account-row {
position: absolute;
top: 265px;
left: 0;
width: 1080px;
height: 120px;
padding: 0 32px;
display: flex;
align-items: center;
gap: 22px;
box-sizing: border-box;
}
.account-avatar {
width: 78px;
height: 78px;
border-radius: 50%;
background: #CF6679;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: #1E1E1E;
}
.account-text { display: flex; flex-direction: column; }
.account-text .label { color: #C0C0FF; font-size: 42px; font-weight: 700; }
.account-text .email { color: #A8A8A8; font-size: 36px; }
/* Divider */
.divider { height: 1px; background: #2B2B2B; margin: 12px 0; }
/* Detail rows */
.details {
position: absolute;
top: 400px;
left: 0;
width: 1080px;
padding-bottom: 24px;
}
.detail-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 34px 32px;
box-sizing: border-box;
height: 130px;
border-bottom: 1px solid #232323;
}
.detail-left {
display: flex;
align-items: center;
gap: 26px;
font-size: 44px;
}
.detail-right {
color: #D9D9D9;
font-size: 44px;
}
.subtext { color: #AAAAAA; font-size: 38px; }
/* Simple icons */
.ic {
width: 54px; height: 54px; display: inline-block;
}
/* Switch */
.switch {
width: 180px;
height: 88px;
background: #3A353E;
border-radius: 44px;
padding: 8px;
box-sizing: border-box;
display: flex;
justify-content: flex-start;
align-items: center;
}
.switch::after {
content: "";
width: 72px; height: 72px; border-radius: 50%;
background: #8D8697;
display: block;
}
/* Suggestion chips and keyboard */
.keyboard {
position: absolute;
left: 0;
bottom: 0;
width: 1080px;
height: 870px;
background: #1B1B1B;
border-top-left-radius: 22px;
border-top-right-radius: 22px;
box-shadow: 0 -6px 18px rgba(0,0,0,0.6);
}
.suggestions {
height: 110px;
display: flex;
align-items: center;
gap: 22px;
padding: 0 26px;
background: #1B1B1B;
border-bottom: 1px solid #2A2A2A;
}
.chip {
padding: 16px 26px;
background: #2B2B2B;
color: #EAEAEA;
border-radius: 30px;
font-size: 40px;
}
.chip.mic { width: 70px; height: 70px; padding: 0; display: flex; align-items: center; justify-content: center; }
.keys {
padding: 20px 18px 22px;
box-sizing: border-box;
}
.row {
display: flex;
justify-content: center;
gap: 18px;
margin: 18px 0;
}
.key {
background: #2B2B2B;
color: #EDEDED;
min-width: 88px;
height: 120px;
border-radius: 22px;
display: flex;
align-items: center;
justify-content: center;
font-size: 54px;
box-shadow: inset 0 -3px 0 rgba(0,0,0,0.25);
}
.key.wide { min-width: 150px; }
.space { flex: 1; min-width: 440px; }
.enter { background: #C9A6FF; color: #1D132B; }
.delete { min-width: 140px; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">
<div>8:38</div>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<div class="status-right">
<span style="font-size:30px;">Wi‑Fi</span>
<span style="font-size:30px;">▮▮▮</span>
<span style="font-size:30px;">🔋</span>
</div>
</div>
<!-- App Header -->
<div class="app-header">
<div class="icon-btn">
<!-- simple X icon -->
<svg class="ic" viewBox="0 0 24 24" fill="none" stroke="#C9B6FF" stroke-width="2">
<path d="M4 4L20 20M20 4L4 20"></path>
</svg>
</div>
<input class="title-input" value="Transport" />
<div class="save-pill">Save</div>
</div>
<!-- Account Row -->
<div class="account-row">
<div class="account-avatar">C</div>
<div class="account-text">
<div class="label">
<svg width="22" height="22" viewBox="0 0 24 24" style="vertical-align: middle;">
<circle cx="12" cy="12" r="8" fill="#6FA2FF"></circle>
</svg>
<span style="margin-left:10px;">Events</span>
</div>
<div class="email">dbwscratch.test.id4@gmail.com</div>
</div>
</div>
<div class="details">
<div class="detail-row">
<div class="detail-left">
<svg class="ic" viewBox="0 0 24 24" fill="none" stroke="#C9C9C9" stroke-width="2">
<circle cx="12" cy="12" r="8"></circle>
<path d="M12 6v6l4 2"></path>
</svg>
<div>All-day</div>
</div>
<div class="detail-right">
<div class="switch"></div>
</div>
</div>
<div class="detail-row">
<div class="detail-left">
<div style="width:54px;height:54px;"></div>
<div class="subtext">Mon, Jul 24, 2023</div>
</div>
<div class="detail-right">9:00 AM</div>
</div>
<div class="detail-row">
<div class="detail-left">
<div style="width:54px;height:54px;"></div>
<div class="subtext">Mon, Jul 24, 2023</div>
</div>
<div class="detail-right">10:00 AM</div>
</div>
<div class="detail-row">
<div class="detail-left">
<svg class="ic" viewBox="0 0 24 24" fill="none" stroke="#C9C9C9" stroke-width="2">
<circle cx="12" cy="12" r="8"></circle>
<path d="M2 12h20M12 2a10 10 0 0 1 0 20M12 2a10 10 0 0 0 0 20"></path>
</svg>
<div>India Standard Time</div>
</div>
<div class="detail-right"></div>
</div>
<div class="detail-row">
<div class="detail-left">
<svg class="ic" viewBox="0 0 24 24" fill="none" stroke="#C9C9C9" stroke-width="2">
<path d="M4 4v6h6"></path>
<path d="M20 20v-6h-6"></path>
<path d="M4 10a8 8 0 0 0 16 0"></path>
</svg>
<div>Does not repeat</div>
</div>
<div class="detail-right"></div>
</div>
<div class="detail-row">
<div class="detail-left">
<svg class="ic" viewBox="0 0 24 24" fill="none" stroke="#C9C9C9" stroke-width="2">
<circle cx="12" cy="8" r="4"></circle>
<path d="M6 22c0-3.3 3-6 6-6s6 2.7 6 6"></path>
<path d="M18 10l3 3M6 10l-3 3"></path>
</svg>
<div>Add people</div>
</div>
<div class="detail-right"></div>
</div>
</div>
<!-- Keyboard -->
<div class="keyboard">
<div class="suggestions">
<div class="chip">Transport</div>
<div class="chip">Transportation</div>
<div class="chip">Transporter</div>
<div class="chip mic">
<svg width="36" height="36" viewBox="0 0 24 24" fill="#EDEDED">
<path d="M12 14a3 3 0 0 0 3-3V6a3 3 0 0 0-6 0v5a3 3 0 0 0 3 3z"></path>
<path d="M19 11a7 7 0 0 1-14 0M12 18v4"></path>
</svg>
</div>
</div>
<div class="keys">
<div class="row">
<div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div>
<div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div>
<div class="key">o</div><div class="key">p</div>
</div>
<div class="row" style="padding:0 60px;">
<div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div>
<div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
</div>
<div class="row" style="padding:0 120px;">
<div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div>
<div class="key">b</div><div class="key">n</div><div class="key">m</div>
<div class="key delete"></div>
</div>
<div class="row">
<div class="key wide">?123</div>
<div class="key wide">,</div>
<div class="key wide">😊</div>
<div class="key space space"> </div>
<div class="key wide">.</div>
<div class="key enter"></div>
</div>
</div>
</div>
</div>
</body>
</html>