File size: 8,214 Bytes
98687c3 | 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Presentation Viewer Mock</title>
<style>
/* Reset and environment */
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif; color: #EDEDED; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #111213;
}
/* Status bar */
.status-bar {
height: 90px;
background: #1a1b1c;
color: #e9e9e9;
display: flex;
align-items: center;
padding: 0 28px;
box-sizing: border-box;
font-size: 36px;
letter-spacing: 1px;
}
.sb-left { display: flex; align-items: center; gap: 16px; }
.sb-center { flex: 1; display: flex; justify-content: center; gap: 18px; opacity: 0.85; }
.sb-center .pill {
width: 46px; height: 28px; border-radius: 6px; background: #2b2c2d;
display: inline-block;
}
.sb-right { display: flex; align-items: center; gap: 18px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #bdbdbd; display: inline-block; }
/* App bar */
.app-bar {
height: 120px;
background: #1f2021;
display: flex;
align-items: center;
padding: 0 24px;
box-sizing: border-box;
border-bottom: 1px solid #0d0d0d;
}
.app-left { display: flex; align-items: center; gap: 18px; }
.app-title { font-size: 44px; font-weight: 500; color: #f4f4f4; }
.app-right { margin-left: auto; display: flex; align-items: center; gap: 26px; }
/* Slides area */
.slides-area {
background: #000;
padding-top: 6px;
box-sizing: border-box;
height: 1730px; /* space before bottom bar and home pill */
overflow: hidden;
}
.slide-wrap { padding: 10px 0; }
.divider { height: 16px; background: #0a0a0a; }
.slide {
position: relative;
width: 1040px;
height: 540px;
margin: 0 auto;
background: #23302c;
border: 2px solid #0c0c0c;
overflow: hidden;
}
/* Right green panel */
.slide .right-panel {
position: absolute;
top: 0; right: 0;
width: 170px;
height: 100%;
background: linear-gradient(180deg, #c9e9a5 0%, #a8db83 100%);
border-left: 2px solid rgba(0,0,0,0.5);
opacity: 0.95;
}
/* Subtle dark diagonals to mimic theme */
.slide::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(150% 100% at 0% 0%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 60%),
linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%);
pointer-events: none;
}
/* Left cyan accent strip */
.accent-strip {
position: absolute;
top: 14px;
bottom: 14px;
left: 26px;
width: 6px;
background: #8fd7d9;
box-shadow: 0 0 0 1px rgba(0,0,0,0.3) inset;
}
/* Small corner triangle accent */
.tri {
position: absolute;
width: 0; height: 0;
border-left: 16px solid transparent;
border-top: 16px solid #7ecbd1;
left: 160px; top: 120px;
opacity: 0.9;
}
.slide-title {
position: absolute;
left: 230px;
top: 210px;
font-size: 68px;
letter-spacing: 0.5px;
color: #f2f6f3;
font-weight: 400;
}
/* Spacer to emulate empty area */
.big-spacer {
height: 680px;
background: #000;
}
/* Bottom toolbar */
.bottom-bar {
position: absolute;
left: 0; right: 0;
bottom: 80px; /* leave space for home pill */
height: 160px;
background: #232425;
border-top: 1px solid #141414;
display: flex;
align-items: center;
justify-content: space-around;
box-sizing: border-box;
}
.tool {
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
color: #cfcfcf;
font-size: 30px;
}
.tool svg { width: 56px; height: 56px; stroke: #c9c9c9; fill: none; stroke-width: 2.5; }
/* Home gesture pill */
.home-pill {
position: absolute;
bottom: 22px;
left: 50%;
transform: translateX(-50%);
width: 220px;
height: 10px;
border-radius: 6px;
background: #e8e8e8;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="sb-left">8:54</div>
<div class="sb-center" aria-label="status icons">
<span class="pill"></span>
<span class="pill"></span>
<span class="pill"></span>
<span class="pill"></span>
<span class="dot"></span>
</div>
<div class="sb-right">
<!-- simple signal and battery shapes -->
<svg width="40" height="32" viewBox="0 0 24 24" aria-label="signal">
<path d="M3 20h2v-4H3v4zm4 0h2v-7H7v7zm4 0h2v-10h-2V20zm4 0h2v-13h-2V20z" fill="#e0e0e0"></path>
</svg>
<svg width="44" height="32" viewBox="0 0 24 24" aria-label="battery">
<rect x="2" y="7" width="18" height="10" rx="2" ry="2" stroke="#e0e0e0" fill="none"></rect>
<rect x="3.8" y="8.8" width="12" height="6.4" fill="#e0e0e0"></rect>
<rect x="20" y="10" width="2" height="4" fill="#e0e0e0"></rect>
</svg>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<div class="app-left">
<svg width="48" height="48" viewBox="0 0 24 24" aria-label="back">
<path d="M15 19L8 12l7-7" stroke="#e8e8e8" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<div class="app-title">Presentation</div>
</div>
<div class="app-right">
<svg width="48" height="48" viewBox="0 0 24 24" aria-label="cloud upload">
<path d="M5 16h14a4 4 0 0 0-1.1-7.9A6 6 0 0 0 7.2 6a5 5 0 0 0-2.2 10" stroke="#e8e8e8" fill="none" stroke-width="2"></path>
<path d="M12 14V9m0 0l-3 3m3-3l3 3" stroke="#e8e8e8" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<svg width="42" height="42" viewBox="0 0 24 24" aria-label="menu">
<circle cx="12" cy="5" r="2" fill="#e8e8e8"></circle>
<circle cx="12" cy="12" r="2" fill="#e8e8e8"></circle>
<circle cx="12" cy="19" r="2" fill="#e8e8e8"></circle>
</svg>
</div>
</div>
<!-- Slides / content preview -->
<div class="slides-area">
<div class="slide-wrap">
<div class="slide">
<div class="accent-strip"></div>
<div class="tri"></div>
<div class="right-panel"></div>
<div class="slide-title">The Hunter</div>
</div>
</div>
<div class="divider"></div>
<div class="slide-wrap">
<div class="slide">
<div class="accent-strip"></div>
<div class="tri" style="top: 90px;"></div>
<div class="right-panel"></div>
<!-- No title on second preview -->
</div>
</div>
<div class="big-spacer"></div>
</div>
<!-- Bottom toolbar -->
<div class="bottom-bar">
<div class="tool">
<svg viewBox="0 0 24 24" aria-label="present">
<rect x="3" y="4" width="18" height="12" rx="2" ry="2"></rect>
<path d="M12 16v4m-3 0h6" stroke="#c9c9c9"></path>
</svg>
<div>Present</div>
</div>
<div class="tool">
<svg viewBox="0 0 24 24" aria-label="notes">
<rect x="4" y="3" width="14" height="18" rx="2" ry="2"></rect>
<path d="M7 8h8M7 12h8M7 16h6"></path>
</svg>
<div>Notes</div>
</div>
<div class="tool">
<svg viewBox="0 0 24 24" aria-label="edit">
<path d="M4 20h16"></path>
<path d="M14.5 4.5l5 5L9 20H4v-5z"></path>
</svg>
<div>Edit</div>
</div>
<div class="tool">
<svg viewBox="0 0 24 24" aria-label="find">
<circle cx="11" cy="11" r="6"></circle>
<path d="M20 20l-3.5-3.5"></path>
</svg>
<div>Find</div>
</div>
<div class="tool">
<svg viewBox="0 0 24 24" aria-label="share">
<circle cx="6" cy="12" r="2"></circle>
<circle cx="18" cy="6" r="2"></circle>
<circle cx="18" cy="18" r="2"></circle>
<path d="M8 12l8-6M8 12l8 6"></path>
</svg>
<div>Share</div>
</div>
</div>
<!-- Home indicator -->
<div class="home-pill"></div>
</div>
</body>
</html> |