169 lines
3.9 KiB
HTML
169 lines
3.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>Welcome</title>
|
|
<style>
|
|
:root {
|
|
--bg-light: #e6f0fa;
|
|
--text-light: #002b45;
|
|
--accent-light: #2980b9;
|
|
|
|
--bg-dark: #0b1c2c;
|
|
--text-dark: #dbefff;
|
|
--accent-dark: #4aa3ff;
|
|
|
|
--font-stack: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 2em;
|
|
font-family: var(--font-stack),sans-serif;
|
|
background-color: var(--bg-light);
|
|
color: var(--text-light);
|
|
transition: background-color 0.3s, color 0.3s;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.8rem;
|
|
color: var(--accent-light);
|
|
}
|
|
|
|
p.bio {
|
|
font-size: 1.2rem;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
section.projects {
|
|
max-width: 700px;
|
|
margin: 3em auto;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.6rem;
|
|
margin-bottom: 0.5em;
|
|
color: var(--accent-light);
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 0.7em;
|
|
}
|
|
|
|
a.project-link {
|
|
color: var(--accent-light);
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
border-bottom: 2px solid transparent;
|
|
padding: 0.2em 0.4em;
|
|
transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
a.project-link:hover {
|
|
color: white;
|
|
background-color: var(--accent-light);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.social {
|
|
text-align: center;
|
|
margin-top: 3em;
|
|
}
|
|
|
|
h2 {
|
|
padding: 0.2em;
|
|
}
|
|
|
|
.social a {
|
|
color: var(--accent-light);
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
padding: 0.6em 1.2em;
|
|
border: 2px solid var(--accent-light);
|
|
border-radius: 8px;
|
|
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.social a:hover {
|
|
background-color: var(--accent-light);
|
|
color: white;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: var(--bg-dark);
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
h1, h2 {
|
|
color: var(--accent-dark);
|
|
}
|
|
|
|
a.project-link {
|
|
color: var(--accent-dark);
|
|
}
|
|
|
|
a.project-link:hover {
|
|
background-color: var(--accent-dark);
|
|
color: #0b1c2c;
|
|
}
|
|
|
|
.social a {
|
|
color: var(--accent-dark);
|
|
border-color: var(--accent-dark);
|
|
}
|
|
|
|
.social a:hover {
|
|
background-color: var(--accent-dark);
|
|
color: #0b1c2c;
|
|
box-shadow: 0 0 10px var(--accent-dark),
|
|
0 0 20px var(--accent-dark);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.social a {
|
|
display: block;
|
|
margin: 0.5em auto;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Ari Yeger</h1>
|
|
<p class="bio" style="text-align: justify">Hi! I'm a developer working on cool personal and open source projects. Here are some of the things I've built and worked on.</p>
|
|
</header>
|
|
|
|
<section class="projects" style="max-width:615px; margin:3em auto; text-align:left;">
|
|
<h2>Projects</h2>
|
|
<ul style="text-align:left; display:inline-block;">
|
|
<li><a class="project-link" href="https://talnajman.com">Website for an Animator</a></li>
|
|
<li><a class="project-link" href="https://git.li0nhunter.com">My personal Gitea installation, with Dokku deployment server</a></li>
|
|
<li><a class="project-link" href="https://cantor.li0nhunter.com">Website for a Cantor to share his music library</a></li>
|
|
<li><a class="project-link" href="https://shocktrack.li0nhunter.com">Android app for tracking breaker boxes in a construction site</a></li>
|
|
</ul>
|
|
</section>
|
|
|
|
<div class="social">
|
|
<a href="https://github.com/L10nhunter" target="_blank" rel="noopener noreferrer">Visit my GitHub</a>
|
|
</div>
|
|
</body>
|
|
</html>
|