101 lines
2.3 KiB
HTML
101 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ugo Preiswerk</title>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
|
|
|
|
:root {
|
|
--bg: #f3f4ef;
|
|
--panel: #fbfbf8;
|
|
--text: #16211d;
|
|
--muted: #5f6e67;
|
|
--line: #dde3de;
|
|
--accent: #1f6b55;
|
|
--accent-soft: #ecf5f1;
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
|
|
body {
|
|
font-family: 'DM Sans', 'Segoe UI', sans-serif;
|
|
color: var(--text);
|
|
max-width: 520px;
|
|
margin: 0 auto;
|
|
padding: 72px 20px;
|
|
min-height: 100vh;
|
|
background:
|
|
radial-gradient(1200px 500px at 20% -20%, #ffffff 0%, transparent 60%),
|
|
radial-gradient(800px 400px at 100% 120%, #e7f1ec 0%, transparent 60%),
|
|
var(--bg);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.7rem;
|
|
line-height: 1.2;
|
|
margin: 0 0 8px;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
p {
|
|
color: var(--muted);
|
|
margin: 0 0 26px;
|
|
font-size: 0.98rem;
|
|
}
|
|
|
|
a {
|
|
display: block;
|
|
position: relative;
|
|
padding: 14px 18px;
|
|
margin-bottom: 12px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
text-decoration: none;
|
|
color: var(--text);
|
|
background: var(--panel);
|
|
box-shadow: 0 6px 20px rgba(22, 33, 29, 0.05);
|
|
transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
|
|
}
|
|
|
|
a::after {
|
|
content: '↗';
|
|
position: absolute;
|
|
right: 14px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
color: var(--muted);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
a:hover,
|
|
a:focus-visible {
|
|
background: var(--accent-soft);
|
|
border-color: #c8d7d0;
|
|
transform: translateY(-1px);
|
|
outline: none;
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
body {
|
|
padding-top: 56px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.55rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Ugo Preiswerk</h1>
|
|
<p>Junior Full Stack Developer · DevOps learner</p>
|
|
<a href="https://ugo-preiswerk.netlify.app">Portfolio</a>
|
|
<a href="https://github.com/dev-ugo">GitHub</a>
|
|
<a href="https://tech-blog-dev.netlify.app">Blog</a>
|
|
<a href="https://git.ugo-preiswerk.site">Gitea</a>
|
|
<a href="https://uptime.ugo-preiswerk.site">Uptime</a>
|
|
</body>
|
|
</html>
|