-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
155 lines (153 loc) · 8.23 KB
/
Copy pathindex.html
File metadata and controls
155 lines (153 loc) · 8.23 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>edriso · hub</title>
<meta name="description" content="One page linking everything I have built: apps, guides, bots, my resume, and portfolio." />
<meta name="theme-color" content="#13141a" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<meta property="og:title" content="edriso · hub" />
<meta property="og:description" content="One page linking everything I have built: apps, guides, bots, my resume, and portfolio." />
<meta property="og:type" content="website" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Hanken+Grotesk:wght@400;500;600;700&display=block" rel="stylesheet" />
<style>
:root {
--bg: #13141a;
--bg2: #0d0e12;
--surface: #1c1d25;
--surface2: #262833;
--line: rgba(225, 228, 245, 0.1);
--ink: #ecedf3;
--dim: #9ea3b8;
--faint: #646980;
--accent: #8a93d8;
--serif: 'Fraunces', Georgia, serif;
--ui: 'Hanken Grotesk', system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
background: radial-gradient(130% 80% at 50% 0%, var(--bg), var(--bg2));
color: var(--ink);
font-family: var(--ui);
min-height: 100vh;
-webkit-font-smoothing: antialiased;
}
.wrap { max-width: 900px; margin: 0 auto; padding: clamp(48px, 9vw, 90px) 22px 80px; }
header { text-align: center; margin-bottom: clamp(40px, 7vw, 64px); }
.eyebrow {
font-family: var(--ui); font-size: 12.5px; font-weight: 700;
letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
h1 {
font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 6.5vw, 52px);
line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 16px;
}
h1 em { font-style: italic; color: var(--accent); }
.lede {
color: var(--dim); font-size: clamp(16px, 2.4vw, 18px); line-height: 1.6;
max-width: 560px; margin: 0 auto; text-wrap: pretty;
}
.group { margin-top: clamp(36px, 6vw, 52px); }
.group-h {
display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px;
padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.group-h h2 {
font-family: var(--serif); font-weight: 500; font-size: 21px; margin: 0; letter-spacing: -0.01em;
}
.group-h span { font-family: var(--ui); font-size: 12.5px; color: var(--faint); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.grid.big { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
a.card {
display: flex; flex-direction: column; gap: 8px; text-decoration: none;
background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 20px;
transition: transform 0.14s ease, border-color 0.2s ease, background 0.2s ease;
}
a.card.big { padding: 24px; gap: 10px; }
a.card:hover {
transform: translateY(-3px);
border-color: color-mix(in oklab, var(--c, var(--accent)) 55%, var(--line));
background: var(--surface2);
}
a.card:focus-visible { outline: 2px solid var(--c, var(--accent)); outline-offset: 3px; }
.ct { display: flex; align-items: center; gap: 11px; }
.dot {
width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0; display: grid;
place-items: center; font-size: 16px; background: color-mix(in oklab, var(--c, var(--accent)) 20%, transparent);
}
a.card.big .dot { width: 40px; height: 40px; border-radius: 12px; font-size: 21px; }
.name { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--ink); letter-spacing: -0.01em; }
a.card.big .name { font-size: 21px; }
.chip {
margin-left: auto; font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
color: var(--faint); border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px;
}
.desc { color: var(--dim); font-size: 13.8px; line-height: 1.5; text-wrap: pretty; }
a.card.big .desc { font-size: 14.5px; }
footer { text-align: center; margin-top: 64px; color: var(--faint); font-size: 13px; line-height: 1.6; }
footer a { color: var(--dim); text-decoration: none; border-bottom: 1px solid var(--line); }
footer a:hover { color: var(--ink); }
@media (prefers-reduced-motion: reduce) { a.card { transition: none; } }
</style>
<style>:root { --accent: #e0a24e; }</style>
</head>
<body>
<div class="wrap">
<header>
<div class="eyebrow">Everything in one place</div>
<h1>Everything I've <em>built</em>.</h1>
<p class="lede">One link to all of it: my resume and portfolio, plus the small families of apps, guides, and bots I keep making.</p>
</header>
<div class="group">
<div class="group-h"><h2>Me</h2><span>start here</span></div>
<div class="grid big">
<a class="card big" style="--c:#6f8ae0" href="https://edriso.github.io/" target="_blank" rel="noopener">
<div class="ct"><span class="dot" style="color:#6f8ae0">📄</span><span class="name">Résumé</span></div>
<div class="desc">Who I am and what I have done, on one page.</div>
</a>
<a class="card big" style="--c:#5fbf9b" href="https://edriso.github.io/portfolio/" target="_blank" rel="noopener">
<div class="ct"><span class="dot" style="color:#5fbf9b">💼</span><span class="name">Portfolio</span></div>
<div class="desc">My selected work, written up as short case studies.</div>
</a>
</div>
</div>
<div class="group">
<div class="group-h"><h2>Collections</h2><span>families of small things</span></div>
<div class="grid big">
<a class="card big" style="--c:#2e9e6f" href="https://edriso.github.io/telegram-projects/" target="_blank" rel="noopener">
<div class="ct"><span class="dot" style="color:#2e9e6f">📨</span><span class="name">Telegram Projects</span></div>
<div class="desc">A family of free Telegram channels and bots, in Arabic and English.</div>
</a>
<a class="card big" style="--c:#8a93d8" href="https://edriso.github.io/tiny-apps/" target="_blank" rel="noopener">
<div class="ct"><span class="dot" style="color:#8a93d8">🌿</span><span class="name">Tiny Apps</span></div>
<div class="desc">Small, single-purpose apps that each fix one modern friction, gently and without shame.</div>
</a>
<a class="card big" style="--c:#38b2c4" href="https://edriso.github.io/dev-guides/" target="_blank" rel="noopener">
<div class="ct"><span class="dot" style="color:#38b2c4">📘</span><span class="name">Dev Guides</span></div>
<div class="desc">Hands-on guides, dojos, and references for web developers.</div>
</a>
<a class="card big" style="--c:#d76b9a" href="https://edriso.github.io/apps/" target="_blank" rel="noopener">
<div class="ct"><span class="dot" style="color:#d76b9a">🚀</span><span class="name">Apps & Demos</span></div>
<div class="desc">Standalone web apps and demos, each one live in the browser.</div>
</a>
</div>
</div>
<div class="group">
<div class="group-h"><h2>More</h2><span>the rest</span></div>
<div class="grid big">
<a class="card big" style="--c:#9ea3b8" href="https://github.com/edriso" target="_blank" rel="noopener">
<div class="ct"><span class="dot" style="color:#9ea3b8">🐙</span><span class="name">GitHub</span></div>
<div class="desc">Everything else, in code.</div>
</a>
</div>
</div>
<footer>
Made with a lot of small, quiet evenings.
</footer>
</div>
</body>
</html>