|
| 1 | +<!doctype html> |
| 2 | +<html lang="zh-CN"> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <meta name="viewport" content="width=1080, initial-scale=1" /> |
| 6 | + <style> |
| 7 | + * { box-sizing: border-box; } |
| 8 | + html, body { margin: 0; width: 1080px; height: 1440px; overflow: hidden; } |
| 9 | + body { |
| 10 | + font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", sans-serif; |
| 11 | + color: #f7f4ed; |
| 12 | + background: #0d1413; |
| 13 | + } |
| 14 | + .poster { |
| 15 | + position: relative; |
| 16 | + width: 1080px; |
| 17 | + height: 1440px; |
| 18 | + overflow: hidden; |
| 19 | + background: |
| 20 | + radial-gradient(circle at 83% 12%, rgba(248,151,28,.22), transparent 26%), |
| 21 | + radial-gradient(circle at 18% 78%, rgba(17,161,136,.22), transparent 33%), |
| 22 | + linear-gradient(155deg, #101817 0%, #111b19 42%, #1d211b 100%); |
| 23 | + } |
| 24 | + .orbit { |
| 25 | + position: absolute; |
| 26 | + width: 740px; |
| 27 | + height: 740px; |
| 28 | + right: -320px; |
| 29 | + top: -280px; |
| 30 | + border: 1px solid rgba(245,170,60,.25); |
| 31 | + border-radius: 50%; |
| 32 | + } |
| 33 | + .orbit::before, |
| 34 | + .orbit::after { |
| 35 | + content: ""; |
| 36 | + position: absolute; |
| 37 | + border: 1px solid rgba(37,184,155,.17); |
| 38 | + border-radius: 50%; |
| 39 | + } |
| 40 | + .orbit::before { inset: 78px; } |
| 41 | + .orbit::after { inset: 156px; } |
| 42 | + .header { |
| 43 | + position: absolute; |
| 44 | + left: 76px; |
| 45 | + right: 76px; |
| 46 | + top: 74px; |
| 47 | + display: flex; |
| 48 | + justify-content: space-between; |
| 49 | + align-items: center; |
| 50 | + } |
| 51 | + .brand { font-size: 22px; font-weight: 720; letter-spacing: 3.6px; } |
| 52 | + .dot { display: inline-block; width: 11px; height: 11px; margin-right: 13px; border-radius: 50%; background: #20c685; box-shadow: 0 0 20px rgba(32,198,133,.75); } |
| 53 | + .status { color: rgba(247,244,237,.5); font-size: 19px; font-weight: 620; } |
| 54 | + .headline { |
| 55 | + position: absolute; |
| 56 | + left: 73px; |
| 57 | + top: 166px; |
| 58 | + width: 900px; |
| 59 | + margin: 0; |
| 60 | + font-size: 74px; |
| 61 | + line-height: 1.08; |
| 62 | + letter-spacing: -4px; |
| 63 | + font-weight: 740; |
| 64 | + } |
| 65 | + .headline em { font-style: normal; color: #f3a12e; } |
| 66 | + .intro { |
| 67 | + position: absolute; |
| 68 | + left: 78px; |
| 69 | + top: 352px; |
| 70 | + margin: 0; |
| 71 | + color: rgba(247,244,237,.61); |
| 72 | + font-size: 28px; |
| 73 | + line-height: 1.5; |
| 74 | + font-weight: 520; |
| 75 | + } |
| 76 | + .stage { |
| 77 | + position: absolute; |
| 78 | + left: 58px; |
| 79 | + top: 470px; |
| 80 | + width: 964px; |
| 81 | + height: 680px; |
| 82 | + } |
| 83 | + .rail { |
| 84 | + position: absolute; |
| 85 | + width: 850px; |
| 86 | + height: auto; |
| 87 | + filter: drop-shadow(0 26px 46px rgba(0,0,0,.38)); |
| 88 | + } |
| 89 | + .rail.light { left: 0; top: 0; } |
| 90 | + .rail.dark { right: 0; top: 302px; } |
| 91 | + .label { |
| 92 | + position: absolute; |
| 93 | + display: flex; |
| 94 | + align-items: center; |
| 95 | + gap: 11px; |
| 96 | + font-size: 20px; |
| 97 | + font-weight: 680; |
| 98 | + letter-spacing: 1px; |
| 99 | + color: rgba(247,244,237,.72); |
| 100 | + } |
| 101 | + .label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #f3a12e; } |
| 102 | + .label.light { right: 14px; top: 228px; } |
| 103 | + .label.dark { left: 12px; top: 528px; } |
| 104 | + .label.dark::before { background: #1ab293; } |
| 105 | + .rule { |
| 106 | + position: absolute; |
| 107 | + left: 77px; |
| 108 | + right: 77px; |
| 109 | + top: 1170px; |
| 110 | + height: 1px; |
| 111 | + background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.24), rgba(255,255,255,.04)); |
| 112 | + } |
| 113 | + .footer { |
| 114 | + position: absolute; |
| 115 | + left: 77px; |
| 116 | + right: 77px; |
| 117 | + top: 1218px; |
| 118 | + display: flex; |
| 119 | + align-items: end; |
| 120 | + justify-content: space-between; |
| 121 | + } |
| 122 | + .footer-main { font-size: 31px; line-height: 1.4; font-weight: 650; } |
| 123 | + .footer-main span { color: #25c39e; } |
| 124 | + .footer-side { text-align: right; color: rgba(247,244,237,.52); font-size: 20px; line-height: 1.65; font-weight: 560; } |
| 125 | + </style> |
| 126 | +</head> |
| 127 | +<body> |
| 128 | + <main class="poster"> |
| 129 | + <div class="orbit"></div> |
| 130 | + <header class="header"> |
| 131 | + <div class="brand"><span class="dot"></span>CODEX HELPER</div> |
| 132 | + <div class="status">macOS · v0.7.1</div> |
| 133 | + </header> |
| 134 | + <h1 class="headline">浅色,深色。<br><em>都安静地守着 Codex。</em></h1> |
| 135 | + <p class="intro">额度变化时,颜色会轻轻提醒你。<br>需要时,自动重试接手未完成的任务。</p> |
| 136 | + <section class="stage"> |
| 137 | + <img class="rail light" src="rail-light.png" alt="浅色悬浮轨道" /> |
| 138 | + <div class="label light">浅色模式</div> |
| 139 | + <img class="rail dark" src="rail-dark.png" alt="深色悬浮轨道" /> |
| 140 | + <div class="label dark">深色模式</div> |
| 141 | + </section> |
| 142 | + <div class="rule"></div> |
| 143 | + <footer class="footer"> |
| 144 | + <div class="footer-main">看见剩余,放心继续。<br><span>Codex Helper for Mac</span></div> |
| 145 | + <div class="footer-side">菜单栏 · 悬浮轨道 · 小组件<br>免费开源 · MIT License</div> |
| 146 | + </footer> |
| 147 | + </main> |
| 148 | +</body> |
| 149 | +</html> |
0 commit comments