Skip to content

Commit 0bef179

Browse files
Update cv.html
1 parent a0af7b2 commit 0bef179

File tree

1 file changed

+49
-4
lines changed

1 file changed

+49
-4
lines changed

cv.html

Lines changed: 49 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,41 @@
218218
width: 100%;
219219
border: none;
220220
}
221+
.info-icon {
222+
font-size: 1.2rem;
223+
cursor: pointer;
224+
font-weight: bold;
225+
color: #0073e6;
226+
margin-left: 5px;
227+
}
228+
229+
.info-box {
230+
display: none;
231+
position: absolute;
232+
top: 40px;
233+
left: 50%;
234+
transform: translateX(-50%);
235+
background-color: #fff;
236+
border: 1px solid #ccc;
237+
padding: 10px;
238+
max-width: 300px;
239+
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
240+
z-index: 1000;
241+
}
242+
243+
.close-info {
244+
background-color: #0073e6;
245+
color: white;
246+
padding: 5px 10px;
247+
border: none;
248+
cursor: pointer;
249+
margin-top: 10px;
250+
}
251+
252+
.close-info:hover {
253+
background-color: #005bb5;
254+
}
255+
221256
</style>
222257
</head>
223258
<body>
@@ -240,12 +275,22 @@ <h1>Hariprashad Ravikumar</h1>
240275
</ul>
241276
</nav>
242277

243-
<main>
244-
<div class="download-container">
245-
<p>(Current as of January, 2025)</p>
246-
<a href="cv/CV_HARI.pdf" class="download-button" target="_blank">Download Full CV</a>
278+
<main>
279+
<div class="download-container">
280+
<p id="cv-date">(Current as of <span id="cv-date-text"></span>) <span id="info-icon" class="info-icon">i</span></p>
281+
<a href="cv/CV_HARI.pdf" class="download-button" target="_blank">Download Full CV</a>
247282
</div>
248283

284+
<div id="info-box" class="info-box">
285+
<p><strong>Automated LaTeX CV Build & Deployment</strong></p>
286+
<p>This CV is automatically built and deployed using a GitHub Actions workflow, pulling LaTeX files from Overleaf and compiling them into a PDF with every commit. Find more details about the workflow on my GitHub:
287+
<a href="https://github.com/Hariprashad-Ravikumar/CV-GitHub-Actions-LaTeX-ci-cd" target="_blank">GitHub Repository</a>.
288+
</p>
289+
<button id="close-info" class="close-info">Close</button>
290+
</div>
291+
</main>
292+
293+
249294
<section id="contact">
250295
<h2>Contact</h2>
251296
<p><a href="mailto:hari1729@nmsu.edu">hari1729@nmsu.edu</a></p>

0 commit comments

Comments
 (0)