-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
211 lines (181 loc) · 7.42 KB
/
index.html
File metadata and controls
211 lines (181 loc) · 7.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coral Fustero-Torre | PhD</title>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<style>
:root {
--text-color: #555;
--accent-red: #d9432f;
--paper-bg: #e5e5e2;
--ink-texture: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyIiBoZWlnaHQ9IjIiPjxjaXJjbGUgY3g9IjEiIGN5PSIxIiByPSIwLjUiIGZpbGw9IiM3NzciIGZpbGwtb3BhY2l0eT0iMC4yNSIgLz48L3N2Zz4=');
}
body {
font-family: 'Courier Prime', monospace;
margin: 0;
background-color: var(--paper-bg);
color: var(--text-color);
line-height: 1.6;
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxm Filter id="n"><ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC45IiBudW1PY3RhdmVzPSI0IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0ibm9uZSIgZmlsdGVyPSJ1cmwoI24pIiBvcGFjaXR5PSIwLjA4Ii8+PC9zdmc+');
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 0 2rem;
}
header { padding: 6rem 0 3rem 0; }
h1 {
font-weight: 700;
font-size: 1.6rem;
margin: 0;
color: #333;
}
main { padding: 1rem 0 5rem 0; }
.bio {
font-size: 1rem;
margin-bottom: 6rem;
text-align: justify;
max-width: 900px;
color: #444;
}
.nav-section { margin-bottom: 6rem; }
/* --- SECTION HEADERS (No Underlines) --- */
.section-header {
display: inline-flex;
align-items: baseline;
margin-bottom: 2rem;
text-decoration: none;
transition: opacity 0.3s;
color: inherit;
}
.section-header:hover { opacity: 0.6; }
.section-header h2 {
font-size: 1.1rem;
font-weight: 700;
margin: 0;
}
.art-head h2 { color: var(--accent-red); }
.section-arrow {
margin-left: 10px;
font-size: 0.9rem;
opacity: 0.4;
}
/* --- ARE.NA GRID SYSTEM --- */
.arena-grid {
display: grid;
gap: 30px;
}
/* PRIMARY SECTION (Science) */
.grid-science {
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); /* Larger Boxes */
}
/* SECONDARY SECTION (Art) */
.grid-art {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Smaller Boxes */
gap: 20px;
}
.arena-box {
aspect-ratio: 1 / 1;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
position: relative;
transition: all 0.4s ease-in-out;
}
.arena-box span {
font-size: 0.9rem;
z-index: 3;
transition: font-weight 0.2s;
}
/* Science Styling: Professional, Minimalist */
.science-box {
color: #333;
background-color: rgba(255,255,255,0.4);
border: 1px solid rgba(0,0,0,0.1);
}
.science-box:hover { background: #fff; transform: translateY(-3px); }
/* Art Styling: Transparent Background, Red Scrap focus */
.art-box {
color: var(--accent-red);
background-color: transparent; /* No white background */
border: none;
}
.art-box::before {
content: "";
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background-color: rgba(217, 67, 47, 0.12); /* The "Scrap" color */
z-index: 1;
transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}
.art-box:hover::before {
background-color: rgba(217, 67, 47, 0.2);
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important; /* Expansion reveal */
}
/* Scraps Shape Pool */
.cut-trapezoid::before { clip-path: polygon(12% 0%, 88% 0%, 100% 100%, 0% 100%); }
.cut-map::before { clip-path: polygon(5% 15%, 95% 0, 100% 85%, 15% 100%); }
.cut-rhomboid::before { clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%); }
footer {
padding: 4rem 0;
border-top: 1px solid rgba(0,0,0,0.05);
font-size: 0.75rem;
color: #999;
display: flex;
justify-content: space-between;
}
@media (max-width: 768px) {
.grid-science, .grid-art { grid-template-columns: repeat(2, 1fr); }
h1 { font-size: 1.3rem; }
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Coral Fustero-Torre, PhD</h1>
</header>
<main>
<section class="bio">
Coral Fustero-Torre is a <strong>computational biologist</strong> investigating cellular systems through advanced computational methods. She specializes in single-cell sequencing and the development of analytical tools to decipher biological complexity. Alongside her science, she explores analog photography, collage, and Super8 filmmaking as a <strong>visual artist</strong>, decoding her surrounding microenvironments.
</section>
<div class="nav-section">
<a href="science.html" class="section-header">
<h2>Computational biologist</h2>
<span class="section-arrow">→</span>
</a>
<div class="arena-grid grid-science">
<a href="science.html#research" class="science-box arena-box"><span>Research</span></a>
<a href="science.html#publications" class="science-box arena-box"><span>Publications</span></a>
<a href="science.html#cv" class="science-box arena-box"><span>CV</span></a>
</div>
</div>
<div class="nav-section">
<a href="art.html" class="section-header art-head">
<h2>Visual artist</h2>
<span class="section-arrow">→</span>
</a>
<div class="arena-grid grid-art">
<a href="photography.html" class="art-box arena-box cut-trapezoid"><span>Photography</span></a>
<a href="collage.html" class="art-box arena-box cut-map"><span>Collage</span></a>
<a href="film.html" class="art-box arena-box cut-rhomboid"><span>Film</span></a>
</div>
</div>
</main>
<footer>
<div>© 2026 Coral Fustero-Torre</div>
<div>Computational Biologist | Visual Artist</div>
</footer>
</div>
<script>
// Individual rotations to keep the "drifting scraps" feel
document.querySelectorAll('.art-box').forEach(box => {
const rot = (Math.random() * 6 - 3).toFixed(1);
box.style.transform = `rotate(${rot}deg)`;
});
</script>
</body>
</html>