AndroidCode / code /10093 /10093_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<html>
<head>
<meta charset="UTF-8">
<title>Settings UI</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #000000;
color: #ffffff;
}
/* Top marketing banner */
.banner {
position: relative;
width: 100%;
height: 560px;
background: linear-gradient(90deg, #f4d6a8 0%, #f0b6ad 50%, #efb0b3 100%);
padding: 40px 60px 60px;
box-sizing: border-box;
}
.banner-text {
font-size: 44px;
line-height: 60px;
color: #2b2b2b;
letter-spacing: 0.2px;
margin-top: 30px;
}
.cta {
margin-top: 40px;
width: 620px;
height: 128px;
background: #3a976a;
border-radius: 64px;
display: flex;
justify-content: center;
align-items: center;
color: #ffffff;
font-weight: 700;
font-size: 44px;
box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
/* Sections */
.section {
padding: 36px 60px 0 60px;
}
.sec-title {
font-size: 38px;
color: #bdbdbd;
letter-spacing: 6px;
margin: 14px 0 28px;
}
/* Rows */
.row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 26px 0;
border-bottom: 1px solid #1c1c1c;
}
.row-content {
display: flex;
align-items: center;
gap: 34px;
}
.label {
font-size: 56px;
}
.subtle {
color: #9e9e9e;
font-size: 54px;
}
/* Pills and toggles */
.pill {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 26px 40px;
font-size: 42px;
font-weight: 700;
color: #000000;
background: #f6d255;
border-radius: 64px;
}
.toggle {
width: 160px;
display: flex;
justify-content: space-between;
align-items: center;
}
.tog-dot {
width: 64px;
height: 64px;
border-radius: 50%;
background: #9c9c9c;
box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15);
}
/* Icons */
.icon {
width: 96px;
height: 96px;
border: 3px solid #ffffff;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.icon svg {
width: 56px;
height: 56px;
fill: none;
stroke: #ffffff;
stroke-width: 5;
stroke-linecap: round;
stroke-linejoin: round;
}
/* Status overlay simulation */
.status-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 92px;
background: rgba(255,255,255,0.06);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 30px;
box-sizing: border-box;
}
.status-time {
color: #ffffff;
font-size: 42px;
font-weight: 600;
}
.status-icons {
display: flex;
gap: 24px;
}
.status-dot {
width: 18px;
height: 18px;
background: #ffffff;
border-radius: 50%;
opacity: 0.9;
}
/* Home indicator */
.home-indicator {
position: absolute;
bottom: 28px;
left: 50%;
transform: translateX(-50%);
width: 520px;
height: 14px;
background: #e6e6e6;
border-radius: 14px;
opacity: 0.7;
}
</style>
</head>
<body>
<div id="render-target">
<div class="status-overlay">
<div class="status-time">8:42</div>
<div class="status-icons">
<div class="status-dot"></div>
<div class="status-dot"></div>
<div class="status-dot"></div>
<div class="status-dot"></div>
<div class="status-dot"></div>
</div>
</div>
<div class="banner">
<div class="banner-text">
Search, collect, and save unlimited recipes<br>
from all around the web to your Kitchen Stories<br>
cookbooks.
</div>
<div class="cta">Unlock cookbook+</div>
</div>
<div class="section">
<div class="sec-title">ACCOUNT</div>
<div class="row">
<div class="row-content">
<div class="label">Current Plan</div>
</div>
<div class="subtle">Free</div>
</div>
<div class="row" style="border-bottom:none; padding-top:34px; padding-bottom:10px;">
<div class="pill">TRY COOKBOOK+</div>
</div>
</div>
<div class="section">
<div class="sec-title">SYSTEM</div>
<div class="row">
<div class="row-content">
<div class="icon">
<!-- Globe icon -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9"></circle>
<path d="M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18"></path>
</svg>
</div>
<div class="label">Languages</div>
</div>
</div>
<div class="row">
<div class="row-content">
<div class="icon">
<!-- Measuring cup icon -->
<svg viewBox="0 0 24 24">
<path d="M5 5h10l3 3v3"></path>
<path d="M7 5v12a3 3 0 0 0 3 3h4a3 3 0 0 0 3-3V8"></path>
<path d="M9 9h6M9 12h6"></path>
</svg>
</div>
<div class="label">Measurement System</div>
</div>
</div>
<div class="row">
<div class="row-content">
<div class="icon">
<!-- Play icon -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9"></circle>
<path d="M10 8l6 4-6 4z"></path>
</svg>
</div>
<div class="label">Video autoplay</div>
</div>
</div>
<div class="row">
<div class="row-content">
<div class="icon">
<!-- Bell icon -->
<svg viewBox="0 0 24 24">
<path d="M6 10a6 6 0 0 1 12 0v5l2 2H4l2-2z"></path>
<path d="M10 19a2 2 0 0 0 4 0"></path>
</svg>
</div>
<div class="label">Notifications</div>
</div>
</div>
<div class="row">
<div class="row-content">
<div class="icon">
<!-- Half circle / display icon -->
<svg viewBox="0 0 24 24">
<path d="M3 12a9 9 0 0 1 18 0"></path>
<path d="M4 16h16"></path>
</svg>
</div>
<div class="label">Display</div>
</div>
</div>
</div>
<div class="section">
<div class="sec-title">APPLIANCES</div>
<div class="row">
<div class="row-content">
<div class="icon">
<!-- Home connect (house) icon -->
<svg viewBox="0 0 24 24">
<path d="M4 11l8-6 8 6"></path>
<path d="M6 10v8h12v-8"></path>
<path d="M10 18v-4h4v4"></path>
</svg>
</div>
<div class="label">Home Connect</div>
</div>
<div class="toggle">
<div class="tog-dot"></div>
<div class="tog-dot" style="opacity:0.6;"></div>
</div>
</div>
</div>
<div class="section">
<div class="sec-title">MORE</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html>