Public Access
1
0

fix: resume button margin

This commit is contained in:
2025-08-21 21:21:44 -04:00
parent c7f3c7194b
commit 9f8b4f1812

View File

@@ -1,6 +1,6 @@
<!doctype html><!-- HTML5 --> <!doctype html><!-- HTML5 -->
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>{{ title }}</title> <title>{{ title }}</title>
@@ -43,8 +43,8 @@
<link rel="stylesheet" href="/css/style.css"> <link rel="stylesheet" href="/css/style.css">
<link rel="canonical" href="{{ site.url }}{{ page.url }}"> <link rel="canonical" href="{{ site.url }}{{ page.url }}">
<link rel="icon" type="image/x-icon" href="/favicon.png"> <link rel="icon" type="image/x-icon" href="/favicon.png">
</head> </head>
<body class="antialiased"> <body class="antialiased">
<!-- Header & Nav --> <!-- Header & Nav -->
<header class="sticky top-0 z-50 glass-card shadow-md"> <header class="sticky top-0 z-50 glass-card shadow-md">
<nav class="container mx-auto px-6 py-4 flex justify-between items-center"> <nav class="container mx-auto px-6 py-4 flex justify-between items-center">
@@ -72,7 +72,7 @@
<a href="/#skills" class="block text-gray-300 hover:text-blue-400">Skills</a> <a href="/#skills" class="block text-gray-300 hover:text-blue-400">Skills</a>
<a href="/#experience" class="block text-gray-300 hover:text-blue-400">Experience</a> <a href="/#experience" class="block text-gray-300 hover:text-blue-400">Experience</a>
<a href="/#contact" class="block text-gray-300 hover:text-blue-400">Contact</a> <a href="/#contact" class="block text-gray-300 hover:text-blue-400">Contact</a>
<a href="/{{ site.resumeUrl }}" target="_blank" class="hidden block btn mt-2">View Resume</a> <a href="/{{ site.resumeUrl }}" style="margin-left: 4rem; margin-right: 4rem;" target="_blank" class="block btn mt-2 mb-2 m">View Resume</a>
</div> </div>
</header> </header>
<main class="main-content container mx-auto px-6 py-12"> <main class="main-content container mx-auto px-6 py-12">
@@ -89,5 +89,5 @@
</div> </div>
</footer> </footer>
<script src="/js/main.js"></script> <script src="/js/main.js"></script>
</body> </body>
</html> </html>