my personal site
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Updated resume

+92 -8
Jack_Hannon_Marketing_Resume_Web.pdf Jack_Hannon_Marketing_Resume.pdf

This is a binary file and will not be displayed.

+4 -7
index.html
··· 92 92 </div> 93 93 </div> 94 94 <p class="tagline profile-tagline"> 95 - Marketing &amp; Advertising Graduate 96 - <span class="sep">|</span> Community Engagement 97 - <span class="sep">|</span> Tech Enthusiast 95 + Adobe Suite 96 + <span class="sep">|</span> Google Ads 97 + <span class="sep">|</span> HubSpot certified 98 98 </p> 99 99 <p class="profile-bio"> 100 - I'm a recent Virginia Tech graduate with a B.A. in Advertising and a passion for connecting communities through creative marketing. I specialize in social media outreach, content creation, and event coordination – blending strong communication skills with technical know-how to engage audiences effectively. 101 - </p> 102 - <p class="profile-bio"> 103 - During my time at Virginia Tech, I managed campus marketing campaigns for the Yik Yak app, coordinated community service initiatives as an Eagle Scout, and even developed a mobile app to help students track gym occupancy in real-time. These experiences honed my leadership and problem-solving abilities, and I'm excited to leverage them in new professional opportunities. 100 + I'm a recent Virginia Tech graduate with a B.A. in Advertising and a passion for connecting communities through creative marketing. I specialize in social media outreach, content creation, and event coordination. 104 101 </p> 105 102 </div> 106 103 </section>
+1 -1
resume.html
··· 68 68 <div id="a11y-status" class="visually-hidden" aria-live="polite" aria-atomic="true"></div> 69 69 <div class="resume-header"> 70 70 <h1>Resume</h1> 71 - <a href="Jack_Hannon_Marketing_Resume_Web.pdf" class="btn pdf-btn" download aria-label="Download Jack Hannon's resume as PDF">Download PDF</a> 71 + <a href="Jack_Hannon_Marketing_Resume.pdf" class="btn pdf-btn" download aria-label="Download Jack Hannon's resume as PDF">Download PDF</a> 72 72 </div> 73 73 74 74 <h2>Education</h2>
+87
style.css
··· 1712 1712 color: #333; 1713 1713 } 1714 1714 1715 + /* High contrast mode support for Yik Yak Virginia Tech panel */ 1716 + .high-contrast .vt-yikyak-showcase { 1717 + background: #000; 1718 + border: 2px solid #fff; 1719 + } 1720 + 1721 + .high-contrast .vt-yikyak-showcase h3 { 1722 + color: #fff; 1723 + } 1724 + 1725 + .high-contrast .vt-yikyak-showcase .app-description { 1726 + color: #fff; 1727 + } 1728 + 1729 + .high-contrast .vt-yikyak-showcase .profile-picture { 1730 + border: 2px solid #fff; 1731 + } 1732 + 1733 + .high-contrast .vt-yikyak-showcase .title-section h3 { 1734 + color: #fff; 1735 + } 1736 + 1737 + .high-contrast .vt-yikyak-showcase .title-section .subtitle { 1738 + color: #fff; 1739 + } 1740 + 1741 + .high-contrast .vt-yikyak-showcase .content-section h4 { 1742 + color: #fff; 1743 + } 1744 + 1745 + .high-contrast .vt-yikyak-showcase .content-section p { 1746 + color: #fff; 1747 + } 1748 + 1749 + .high-contrast .vt-yikyak-showcase .feature-card { 1750 + background: #fff; 1751 + color: #000; 1752 + border: 2px solid #000; 1753 + } 1754 + 1755 + .high-contrast .vt-yikyak-showcase .feature-card h4 { 1756 + color: #000; 1757 + } 1758 + 1759 + .high-contrast .vt-yikyak-showcase .feature-card p { 1760 + color: #333; 1761 + } 1762 + 1763 + .high-contrast .vt-yikyak-showcase .stat-item { 1764 + color: #fff; 1765 + } 1766 + 1767 + .high-contrast .vt-yikyak-showcase .stat-number { 1768 + color: #fff; 1769 + } 1770 + 1771 + .high-contrast .vt-yikyak-showcase .stat-label { 1772 + color: #fff; 1773 + } 1774 + 1775 + .high-contrast .vt-yikyak-showcase .content-section img { 1776 + border: 2px solid #fff; 1777 + } 1778 + 1715 1779 /* Yik Yak Project Specific Styles */ 1716 1780 .profile-header { 1717 1781 display: flex; ··· 2112 2176 @media (max-width: 650px) { 2113 2177 .vt-yikyak-showcase .content-section img { 2114 2178 max-width: 90vw; 2179 + } 2180 + } 2181 + 2182 + /* Safari fix: prevent flex children from shrinking in horizontal scroll */ 2183 + .app-screenshots .screenshot-item { 2184 + flex-shrink: 0; 2185 + } 2186 + 2187 + /* Safari/iOS fix: smooth horizontal scrolling */ 2188 + .app-screenshots { 2189 + -webkit-overflow-scrolling: touch; 2190 + } 2191 + 2192 + /* Ensure social icons are visible and not collapsed */ 2193 + .social-links a, .social-links svg { 2194 + color: #333; 2195 + min-width: 1.2rem; 2196 + min-height: 1.2rem; 2197 + } 2198 + 2199 + @media (prefers-color-scheme: dark) { 2200 + .social-links a, .social-links svg { 2201 + color: #fff; 2115 2202 } 2116 2203 }