File size: 6,394 Bytes
ff1f000 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | <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> |