-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
317 lines (277 loc) · 10.7 KB
/
Copy pathindex.html
File metadata and controls
317 lines (277 loc) · 10.7 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
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About me - Papirothèque</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
:root {
--bodyfont: 'IBM Plex Mono', monospace;
--background: #101010;
--text: #dbddcd;
--accent: #a0ea39;
--link: #63d51c;
--border: #252525;
--scroll-thumb: var(--accent);
--scroll-track: var(--background);
}
[data-theme="light"] {
--background: #fdfdfa;
--text: #1a1b16;
--accent: #5e9c00;
--link: #4c8200;
--border: #dcded0;
}
* {
box-sizing: border-box;
scrollbar-color: var(--scroll-thumb) var(--scroll-track);
scrollbar-width: thin;
}
body {
font-family: var(--bodyfont);
background: var(--background);
color: var(--text);
margin: 0;
padding: 40px 20px;
font-size: 0.95rem;
line-height: 1.6;
}
.container {
max-width: 850px;
margin: 0 auto;
}
strong,
b {
font-weight: 700;
color: var(--text);
}
header {
margin-bottom: 60px;
border-bottom: 1px solid var(--border);
padding-bottom: 30px;
}
.header-main {
display: flex;
align-items: center;
gap: 15px;
width: 100%;
}
.theme-toggle {
background: transparent;
border: 1px solid var(--border);
color: var(--accent);
padding: 5px 12px;
font-family: var(--bodyfont);
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
transition: all 0.2s ease;
margin-left: auto;
display: flex;
align-items: center;
gap: 8px;
}
.theme-toggle:hover {
background: var(--accent);
color: var(--background);
}
.theme-toggle svg {
width: 12px;
height: 12px;
fill: currentColor;
}
h3 {
color: var(--accent);
font-size: 1.8rem;
margin: 0;
font-weight: 600;
}
.cv-section {
display: grid;
grid-template-columns: 180px 1fr;
gap: 30px;
margin-bottom: 60px;
}
.section-label {
color: var(--accent);
font-weight: 700;
text-transform: uppercase;
font-size: 0.8rem;
letter-spacing: 2px;
padding-top: 4px;
}
.section-content h4 {
margin: 0 0 10px 0;
color: var(--text);
font-size: 1.1rem;
font-weight: 700;
}
.section-content p {
margin: 0 0 15px 0;
}
.item {
margin-bottom: 35px;
}
.item:last-child {
margin-bottom: 0;
}
.meta {
font-size: 0.8rem;
color: var(--link);
display: block;
margin-bottom: 4px;
}
a {
color: var(--link);
text-decoration: none;
border-bottom: 1px solid transparent;
transition: all 0.2s ease;
}
a:hover {
background: var(--accent);
color: var(--background);
}
img.icon {
width: 32px;
height: auto;
image-rendering: pixelated;
}
/* Responsive Layout */
@media (max-width: 650px) {
body {
padding: 30px 15px;
}
.cv-section {
grid-template-columns: 1fr;
gap: 10px;
margin-bottom: 40px;
}
.section-label {
border-bottom: 1px solid var(--border);
padding-bottom: 8px;
margin-bottom: 15px;
}
h3 {
font-size: 1.4rem;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="header-main">
<img src="assets/images/dino6.gif" class="icon" alt="Avatar">
<h3>About me</h3>
<button id="theme-toggle" class="theme-toggle" aria-label="Toggle dark/light mode">
<svg viewBox="0 0 24 24">
<path
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" />
</svg>
<span>Light Mode</span>
</button>
</div>
</header>
<!-- Who am I -->
<div class="cv-section">
<div class="section-label">Who am I</div>
<div class="section-content">
<p>I am a <strong>multidisciplinary designer</strong> who looks for insights across different fields.
I believe great design happens at the intersection of disciplines, not in isolation.</p>
<p>My process is a continuous loop of exploration: drawing from art, UX, programming and
beyond to solve complex problems, or just for experimental purposes.</p>
</div>
</div>
<!-- Growing Up -->
<div class="cv-section">
<div class="section-label">Growing up</div>
<div class="section-content">
<p>Rooted in a deep interest in <strong>storytelling</strong>, <strong>drawing</strong>, and
<strong>exploration</strong>. My early curiosity for art,
philosophy and astronomy shaped a perspective that views design as a method to help others navigate
complex information from the real world.
</p>
</div>
</div>
<!-- Experience -->
<div class="cv-section">
<div class="section-label">Experience</div>
<div class="section-content">
<div class="item">
<span class="meta">Public Sector / Spain</span>
<h4>City Council of Benavente & Independent Organizations</h4>
<p>I've worked with local administration and independent organizations in rural Spain, developing
communication strategies and visual solutions tailored to their specific needs.
Most of these projects were for public, non-profit purposes, as well as events.</p>
</div>
<div class="item">
<span class="meta">International Institutions / Germany</span>
<h4>HBKSaar, Stadtgalerie, Lichtkunst Unna & Private Clients</h4>
<p>For these projects, both as a student and as an assistant,my design and artistic approach blends
systematic methods with intuitive experimentation. In these institutions, I collaborated on
projects requiring technical knowledge on different fronts: graphic and multimedia design, 2D
and 3D animation, project management, 3D scanning / photogrammetry.</p>
</div>
</div>
</div>
<!-- Right Now -->
<div class="cv-section">
<div class="section-label">Right Now</div>
<div class="section-content">
<div class="item">
<p>Currently balancing a professional practice in <strong>language teaching</strong> with my
ongoing studies in <strong>cross-platform application development</strong>.</p>
<p>My goal is to never stop learning while working on projects that challenge me and help me grow.
</p>
</div>
</div>
</div>
<!-- Toolkit -->
<div class="cv-section">
<div class="section-label">Toolkit</div>
<div class="section-content">
<div class="item">
<span class="meta">Creative Software</span>
<p>Adobe Creative Suite, Affinity, Blender, Krita, Ableton and many more.</p>
</div>
<div class="item">
<span class="meta">Creative Coding</span>
<p>Processing for art experimentation and current exploration of modern development frameworks.</p>
</div>
</div>
</div>
<!-- Contact -->
<h4>If you're interested in more information about my background,
feel free to request it <a href="mailto:aeondsgn@proton.me">here</a>.</h4>
<h4>Check out my projects on my personal <a href="https://papiro.space/blog/">portfolio</a>
or on <a href="https://github.com/papirotheque">Github</a>.</h4>
---
<p>This page's latest update was on <strong>2025-12-31</strong></p>
</div>
<script>
const themeToggle = document.getElementById('theme-toggle');
const themeStatus = themeToggle.querySelector('span');
const htmlElement = document.documentElement;
// Check for saved theme preference
const savedTheme = localStorage.getItem('theme') || 'dark';
if (savedTheme === 'light') {
htmlElement.setAttribute('data-theme', 'light');
themeStatus.textContent = 'Dark Mode';
}
themeToggle.addEventListener('click', () => {
const currentTheme = htmlElement.getAttribute('data-theme');
if (currentTheme === 'light') {
htmlElement.removeAttribute('data-theme');
localStorage.setItem('theme', 'dark');
themeStatus.textContent = 'Light Mode';
} else {
htmlElement.setAttribute('data-theme', 'light');
localStorage.setItem('theme', 'light');
themeStatus.textContent = 'Dark Mode';
}
});
</script>
</body>
</html>