summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-01-20 17:25:49 -0500
committerSam Anthony <sam@samanthony.xyz>2026-01-20 17:25:49 -0500
commitabb6f4594f411e0a6bf959f2d0c36f4f527adc69 (patch)
treea24150adccab53a0a4f09909fbfa581650551e96
parentdd985da30853cc2109ee7995a18192d6f4717bde (diff)
downloadresume-abb6f4594f411e0a6bf959f2d0c36f4f527adc69.zip
add location and website to header
-rw-r--r--resume.html16
-rw-r--r--style.css21
2 files changed, 25 insertions, 12 deletions
diff --git a/resume.html b/resume.html
index ff529c0..6495b37 100644
--- a/resume.html
+++ b/resume.html
@@ -12,12 +12,18 @@
</head>
<body>
<header>
- <h1 class="title"><a href="https://www.samanthony.xyz/">Sam Anthony</a></h1>
- <p><a class="url" href="mailto:sam@samanthony.xyz">sam@samanthony.xyz</a></p>
- <p>(709) 746&ndash;7582</p>
- </table>
+ <div>
+ <p>Montréal, QC, Canada</p>
+ <p><a class="url" href="https://www.samanthony.xyz/">www.samanthony.xyz</a></p>
+ </div>
+ <div>
+ <h1 class="title">Sam Anthony</h1>
+ </div>
+ <div>
+ <p>(709) 746&ndash;7582</p>
+ <p><a class="url" href="mailto:sam@samanthony.xyz">sam@samanthony.xyz</a></p>
+ </div>
</header>
-
<main>
<div class="section">
<h1>Education</h1>
diff --git a/style.css b/style.css
index d54affa..1d78088 100644
--- a/style.css
+++ b/style.css
@@ -38,12 +38,21 @@ body {
}
header {
- margin-bottom: 1em;
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 2em;
+}
+
+header>div:first-child, header>div:last-child {
+ flex: 1;
+}
+
+header>div:last-child {
+ text-align: right;
}
header p {
- margin: 0 auto;
- text-align: center;
+ margin: 0;
}
.section {
@@ -55,8 +64,6 @@ header p {
}
p {
- text-align: left;
- text-justify: inter-word;
margin-bottom: .5em;
}
@@ -66,10 +73,10 @@ a {
}
.title {
- font-size: 1.6em;
+ font-size: 1.7em;
text-align: center;
text-transform: capitalize;
- margin-top: .6em;
+ margin: 0;
}
h1 {