Skip to content

Commit

Permalink
feat: Add Resume Download link
Browse files Browse the repository at this point in the history
  • Loading branch information
iknowhtml committed Sep 11, 2024
1 parent 5a9ecec commit aa1f2cb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ <h3>The University of Virginia: School of Engineering and Applied Science (SEAS)
</div>
</section>
</div>
<a href="https://github.com/iknowhtml/resume/raw/gh-pages/Aki%20Gao's%20Resume.pdf"
id="resume-download-link">Download</a>
</body>

</html>
12 changes: 11 additions & 1 deletion src/style.postcss
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ html {
}

body {
height: 100%;
height: --webkit-fill-available;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #f0f0f0;
Expand Down Expand Up @@ -178,3 +179,12 @@ span {
margin-bottom: 0.75rem;
}
}

#resume-download-link {
padding: 1.25rem;
text-decoration: underline;

@media print {
display: none;
}
}

0 comments on commit aa1f2cb

Please sign in to comment.