Files
personal-site/index.html
Arthur Lu 413ac7c7ab add research,
change around how styles are specified for each page's overlay content
2025-03-08 23:34:41 +00:00

71 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects - Arthur Lu</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="/css/style.css" type="text/css">
<link rel="stylesheet" href="/css/overlay.css" type="text/css">
<link rel="icon" type="image/x-icon" href="/resources/icon/favicon.svg">
<style>
.project {
max-width: 1080px;
margin-left: auto;
margin-right: auto;
}
.project .overlay-content {
text-align: center;
padding-left: 15%;
padding-right: 15%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
</style>
</head>
<body>
<header>
<h1><b><a aria-label="Arthur Lu" href="/" class="site-header">ARTHUR LU</a></b></h1>
<nav>
<a aria-current="page" aria-label="Projects" href="/index.html">PROJECTS</a>
<a aria-label="Research" href="/research.html">RESEARCH</a>
<a aria-label="Photography" href="/photography.html">PHOTOGRAPHY</a>
<a aria-label="About Me" href="/about.html">ABOUT ME</a>
<a aria-label="Notes" href="/notes.html">CLASS NOTES</a>
</nav>
</header>
<main>
<figure class="overlay-container project">
<img src="/resources/projects/proxmoxaas.jpg" alt="" class="image">
<figcaption class="overlay-mask">
<a href="/projects/proxmoxaas.html" class="overlay-content">
<h2>ProxmoxAAS</h2>
<p>Open source self-managed VPS platform based on Proxmox hypervisor.</p>
</a>
</figcaption>
</figure>
<figure class="overlay-container project">
<img src="/resources/projects/pico-bmc.jpg" alt="" class="image">
<figcaption class="overlay-mask">
<a href="/projects/pico-bmc.html" class="overlay-content">
<h2>Pico BMC</h2>
<p>Add remote management features to any motherboard.</p>
</a>
</figcaption>
</figure>
<figure class="overlay-container project">
<img src="/resources/projects/wfa-js.jpg" alt="" class="image">
<figcaption class="overlay-mask">
<a href="/projects/wfa-js.html" class="overlay-content">
<h2>WFA-JS</h2>
<p>Implement Wavefront Alignment algorithm in JavaScript.</p>
</a>
</figcaption>
</figure>
</main>
<footer>
</footer>
</body>
</html>