|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | +<meta charset="utf-8"> |
| 5 | +<style> |
| 6 | + @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400&family=IBM+Plex+Sans:wght@300;400&display=swap'); |
| 7 | + |
| 8 | + * { margin: 0; padding: 0; box-sizing: border-box; } |
| 9 | + |
| 10 | + body { |
| 11 | + width: 1280px; |
| 12 | + height: 640px; |
| 13 | + background: hsl(0 0% 95.3%); |
| 14 | + font-family: 'IBM Plex Sans', sans-serif; |
| 15 | + display: flex; |
| 16 | + flex-direction: column; |
| 17 | + justify-content: center; |
| 18 | + padding: 80px 100px; |
| 19 | + position: relative; |
| 20 | + overflow: hidden; |
| 21 | + } |
| 22 | + |
| 23 | + .ambient { |
| 24 | + position: absolute; |
| 25 | + top: -80px; |
| 26 | + right: -120px; |
| 27 | + width: 600px; |
| 28 | + height: 600px; |
| 29 | + background: radial-gradient(circle at center, |
| 30 | + rgba(100, 120, 255, 0.12) 0%, |
| 31 | + rgba(180, 100, 255, 0.08) 40%, |
| 32 | + transparent 70% |
| 33 | + ); |
| 34 | + filter: blur(40px); |
| 35 | + pointer-events: none; |
| 36 | + } |
| 37 | + |
| 38 | + .label { |
| 39 | + font-family: 'IBM Plex Mono', monospace; |
| 40 | + font-size: 13px; |
| 41 | + font-weight: 400; |
| 42 | + text-transform: uppercase; |
| 43 | + letter-spacing: 0.2em; |
| 44 | + color: rgba(0, 0, 0, 0.3); |
| 45 | + margin-bottom: 20px; |
| 46 | + } |
| 47 | + |
| 48 | + .title { |
| 49 | + font-size: 80px; |
| 50 | + font-weight: 300; |
| 51 | + letter-spacing: -2px; |
| 52 | + color: rgba(0, 0, 0, 0.88); |
| 53 | + line-height: 1; |
| 54 | + margin-bottom: 16px; |
| 55 | + } |
| 56 | + |
| 57 | + .tagline { |
| 58 | + font-size: 24px; |
| 59 | + font-weight: 400; |
| 60 | + color: rgba(0, 0, 0, 0.4); |
| 61 | + margin-bottom: 48px; |
| 62 | + } |
| 63 | + |
| 64 | + .install-pill { |
| 65 | + display: inline-block; |
| 66 | + font-family: 'IBM Plex Mono', monospace; |
| 67 | + font-size: 16px; |
| 68 | + font-weight: 400; |
| 69 | + color: rgba(0, 0, 0, 0.55); |
| 70 | + background: rgba(0, 0, 0, 0.04); |
| 71 | + border: 1px solid rgba(0, 0, 0, 0.06); |
| 72 | + border-radius: 8px; |
| 73 | + padding: 12px 24px; |
| 74 | + } |
| 75 | + |
| 76 | + .footer { |
| 77 | + position: absolute; |
| 78 | + bottom: 40px; |
| 79 | + left: 100px; |
| 80 | + right: 100px; |
| 81 | + border-top: 1px solid rgba(0, 0, 0, 0.06); |
| 82 | + padding-top: 20px; |
| 83 | + display: flex; |
| 84 | + justify-content: space-between; |
| 85 | + align-items: center; |
| 86 | + } |
| 87 | + |
| 88 | + .footer-logo { |
| 89 | + font-family: 'IBM Plex Sans', sans-serif; |
| 90 | + font-size: 15px; |
| 91 | + font-weight: 400; |
| 92 | + color: rgba(0, 0, 0, 0.25); |
| 93 | + } |
| 94 | + |
| 95 | + .footer-url { |
| 96 | + font-family: 'IBM Plex Mono', monospace; |
| 97 | + font-size: 14px; |
| 98 | + color: rgba(0, 0, 0, 0.25); |
| 99 | + } |
| 100 | +</style> |
| 101 | +</head> |
| 102 | +<body> |
| 103 | + <div class="ambient"></div> |
| 104 | + <div class="label">Continue</div> |
| 105 | + <div class="title">pollhook</div> |
| 106 | + <div class="tagline">Poll REST APIs, deliver webhooks</div> |
| 107 | + <div class="install-pill">go install github.com/continuedev/pollhook@latest</div> |
| 108 | + <div class="footer"> |
| 109 | + <div class="footer-logo">Continue</div> |
| 110 | + <div class="footer-url">continue.dev</div> |
| 111 | + </div> |
| 112 | +</body> |
| 113 | +</html> |
0 commit comments