We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c7e3a0 commit cb18518Copy full SHA for cb18518
1 file changed
cv.html
@@ -279,15 +279,17 @@
279
.info-box {
280
display: none;
281
position: absolute;
282
- bottom: 40px;
283
- right: 50%;
284
- transform: translateX(-50%);
+ top: 100%; /* Positioned directly below the "i" icon */
+ left: 50%;
+ transform: translateX(-50%); /* Centers the box relative to the "i" icon */
285
background-color: #fff;
286
border: 1px solid #ccc;
287
padding: 10px;
288
max-width: 300px;
289
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
290
z-index: 1000;
291
+ white-space: normal;
292
+ border-radius: 8px; /* Smooth rounded corners */
293
}
294
295
.close-info {
@@ -297,6 +299,7 @@
297
299
border: none;
298
300
cursor: pointer;
301
margin-top: 10px;
302
+ font-family: 'Times New Roman', Times, serif;
303
304
305
.close-info:hover {
0 commit comments