update homepage
This commit is contained in:
parent
81b7baeac7
commit
2cb0bc0cce
1 changed files with 46 additions and 48 deletions
94
index.html
94
index.html
|
|
@ -24,23 +24,25 @@
|
||||||
font-size: 0.7rem;
|
font-size: 0.7rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#links {
|
.projects {
|
||||||
line-height: 1.5;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#links a {
|
.project {
|
||||||
color: #2525d8;
|
display: flex;
|
||||||
|
align-items: baseline;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
.project-link {
|
||||||
border-collapse: separate;
|
min-width: 20ch;
|
||||||
border-spacing: 0 10px;
|
padding: 0 0.4em 0 0;
|
||||||
}
|
|
||||||
table td {
|
|
||||||
padding: 0px 0.4em;
|
|
||||||
min-width: 20ch;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.project-desc {
|
||||||
|
padding: 0 0.4em;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
html {
|
html {
|
||||||
|
|
@ -49,10 +51,17 @@
|
||||||
pre {
|
pre {
|
||||||
font-size: 2.6vw
|
font-size: 2.6vw
|
||||||
}
|
}
|
||||||
#links {
|
.project {
|
||||||
line-height: 1.6;
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
.project-link {
|
||||||
|
min-width: 0;
|
||||||
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
|
@ -68,50 +77,39 @@
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
I’m a math undergraduate and hobbyist programmer with a growing interest in numerical methods and scientific computing. I enjoy exploring how mathematical ideas translate into efficient low-level code.
|
I'm a math undergraduate and hobbyist programmer with a growing interest in numerical methods and scientific computing.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p><b>projects & hobbys</b></p>
|
<p><b>projects & hobbys</b></p>
|
||||||
|
|
||||||
<table>
|
<div class="projects">
|
||||||
<tr>
|
<div class="project">
|
||||||
<td>
|
<a class="project-link" href="/git/damian/synth">synth</a>
|
||||||
<a href="/synth">synth</a>
|
<span class="project-desc">a modular synthesizer project to learn C</span>
|
||||||
</td>
|
</div>
|
||||||
<td>a modular synthesizer project to learn C</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<a href="/mandelbrot">mandelbrot zoom</a>
|
|
||||||
</td>
|
|
||||||
<td>a simple mandelbrot zoom generator</td>
|
|
||||||
|
|
||||||
</tr>
|
<div class="project">
|
||||||
|
<a class="project-link" href="/mandelbrot">mandelbrot zoom</a>
|
||||||
|
<span class="project-desc">a simple mandelbrot zoom generator</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
<tr>
|
<div class="project">
|
||||||
<td>
|
<a class="project-link" href="/solvers">solvers</a>
|
||||||
<a href="/solvers">solvers</a>
|
<span class="project-desc">exercises in implementing numerical solvers</span>
|
||||||
</td>
|
</div>
|
||||||
<td>exercises in implementing numerical solvers</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<a href="/boring">boring</a>
|
|
||||||
</td>
|
|
||||||
<td>a firefox extension to remove distractions on youtube and reddit</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
<div class="project">
|
||||||
<td>
|
<a class="project-link" href="/boring">boring</a>
|
||||||
<a href="/photography">photography</a>
|
<span class="project-desc">a firefox extension to remove distractions on youtube and reddit</span>
|
||||||
</td>
|
</div>
|
||||||
<td>some of my favourite photos</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</table>
|
<div class="project">
|
||||||
|
<a class="project-link" href="/photography">photography</a>
|
||||||
|
<span class="project-desc">some of my favourite photos</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p><b>feedback & suggestions are always welcome</b></p>
|
||||||
<p><b>feedback & suggestions are welcome</b></p>
|
|
||||||
<p>damianhsimon@gmail.com</p>
|
<p>damianhsimon@gmail.com</p>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue