AndroidCode / code /10155 /10155_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
ff1f000 verified
raw
history blame
6.39 kB
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>New - Google Meet Style</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: #121016;
color: #E8E0FF;
}
/* Top system/status bar */
.status-bar {
height: 84px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #cfc6ff;
font-size: 34px;
letter-spacing: 0.5px;
opacity: 0.9;
}
.status-icons {
display: flex;
align-items: center;
gap: 22px;
}
.dot { width: 10px; height: 10px; background: #cfc6ff; border-radius: 50%; opacity: 0.8; }
/* App bar */
.app-bar {
height: 120px;
display: flex;
align-items: center;
padding: 0 32px;
background: #1B1821;
box-shadow: 0 2px 0 rgba(255,255,255,0.04) inset;
}
.app-bar .title {
font-size: 54px;
margin-left: 24px;
color: #D7C6FF;
}
.icon-btn {
width: 72px;
height: 72px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 18px;
color: #D7C6FF;
}
/* Search */
.search-row {
padding: 26px 32px 12px 32px;
background: #1B1821;
}
.search-field {
height: 112px;
background: #241F2C;
border-radius: 28px;
padding: 0 28px;
display: flex;
align-items: center;
justify-content: space-between;
color: #BBA8F7;
font-size: 38px;
letter-spacing: 0.3px;
border: 1px solid #2F2838;
}
.app-grid {
width: 72px; height: 72px;
display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.app-grid span {
width: 16px; height: 16px; background: #BBA8F7; border-radius: 4px; opacity: 0.9;
justify-self: center; align-self: center;
}
/* Quick actions */
.section {
padding: 8px 32px 0 32px;
}
.quick-item {
display: flex;
align-items: center;
gap: 28px;
padding: 34px 8px;
border-bottom: 1px solid rgba(255,255,255,0.04);
}
.quick-item:last-child { border-bottom: none; }
.quick-icon {
width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
color: #C9B4FF;
}
.quick-text {
font-size: 46px;
color: #C9B4FF;
letter-spacing: 0.2px;
}
/* Contacts section */
.label {
padding: 36px 32px 14px 32px;
color: #9E90B6;
font-size: 34px;
}
.contact {
display: flex;
align-items: center;
justify-content: space-between;
padding: 26px 32px;
}
.contact-info {
display: flex; align-items: center; gap: 26px;
}
.avatar {
width: 116px; height: 116px; border-radius: 58px;
background: #2B2436; color: #BFA6FF; display: flex; align-items: center; justify-content: center;
font-size: 56px; font-weight: 600;
border: 1px solid #3D324C;
}
.name-block .name {
font-size: 48px; color: #D7C6FF;
}
.name-block .phone {
margin-top: 6px;
font-size: 38px; color: #A99BC2;
}
.invite-btn {
padding: 22px 54px;
border-radius: 64px;
border: 2px solid #7B69D9;
color: #CDBAFF;
background: rgba(123,105,217,0.12);
font-size: 42px;
}
/* Helper: simple svg color */
svg { width: 56px; height: 56px; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>8:35</div>
<div class="status-icons">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot" style="width:18px;height:18px;border-radius:4px;"></div>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<div class="icon-btn" aria-label="Back">
<svg viewBox="0 0 24 24" fill="none" stroke="#D7C6FF" stroke-width="2">
<path d="M5 5 L19 19"></path>
<path d="M19 5 L5 19"></path>
</svg>
</div>
<div class="title">New</div>
</div>
<!-- Search -->
<div class="search-row">
<div class="search-field">
<div>Search contacts or dial</div>
<div class="app-grid" aria-label="Apps grid">
<span></span><span></span><span></span>
<span></span><span></span><span></span>
<span></span><span></span><span></span>
</div>
</div>
</div>
<!-- Quick Actions -->
<div class="section">
<div class="quick-item">
<div class="quick-icon">
<!-- Link icon -->
<svg viewBox="0 0 24 24" stroke="#C9B4FF" fill="none" stroke-width="2">
<path d="M10 13a5 5 0 0 1 0-7l1-1a5 5 0 0 1 7 7l-1 1"></path>
<path d="M14 11a5 5 0 0 1 0 7l-1 1a5 5 0 0 1-7-7l1-1"></path>
</svg>
</div>
<div class="quick-text">Create a new meeting</div>
</div>
<div class="quick-item">
<div class="quick-icon">
<!-- Calendar icon -->
<svg viewBox="0 0 24 24" stroke="#C9B4FF" fill="none" stroke-width="2">
<rect x="3" y="5" width="18" height="16" rx="2"></rect>
<path d="M8 3v4M16 3v4M3 11h18"></path>
</svg>
</div>
<div class="quick-text">Schedule in Google Calendar</div>
</div>
<div class="quick-item">
<div class="quick-icon">
<!-- Group/add icon -->
<svg viewBox="0 0 24 24" stroke="#C9B4FF" fill="none" stroke-width="2">
<circle cx="10" cy="8" r="3"></circle>
<path d="M3 19c0-3 3-5 7-5s7 2 7 5"></path>
<path d="M18 8v4M16 10h4"></path>
</svg>
</div>
<div class="quick-text">Create group</div>
</div>
</div>
<!-- Invite section label -->
<div class="label">Invite to Meet calling</div>
<!-- Contacts -->
<div class="contact">
<div class="contact-info">
<div class="avatar">J</div>
<div class="name-block">
<div class="name">JJJ</div>
<div class="phone">+91 99999 99999</div>
</div>
</div>
<button class="invite-btn">Invite</button>
</div>
<div class="contact">
<div class="contact-info">
<div class="avatar">M</div>
<div class="name-block">
<div class="name">Monu</div>
<div class="phone">+91 1234 567 890</div>
</div>
</div>
<button class="invite-btn">Invite</button>
</div>
</div>
</body>
</html>