WOW
All checks were successful
Deploy via SSH on push / deploy-via-ssh (push) Successful in 21s

This commit is contained in:
2025-12-01 14:19:31 +00:00
parent 8d85c14500
commit d4d4667c90
3 changed files with 15 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ projects_list = [
{
"title": "HackTheBox",
"description": "Site de pratique à la cybersécurité sous formes de \"box\" à pirater, avec exploitation réelles de failles existantes",
"image": "htb.png",
"image": "htb.jpg",
"link": "https://app.hackthebox.com/users/2374252",
"button": ["Walkthroughs", "https://vavaas.dev/writeups"],
"align": "end"

View File

@@ -89,6 +89,16 @@ footer img {
.transparent-box {
background-color: rgba(33, 37, 41, 0.85); /* Bootstrap dark with 85% opacity */
}
.transparent-box {
position: relative;
}
.project-btn {
position: absolute;
bottom: 15px;
right: 15px;
z-index: 20;
}
/* ======================================
Links
====================================== */

View File

@@ -27,8 +27,8 @@
<!-- Button in bottom-right -->
{% if project.button %}
<button class="btn btn-primary project-btn"
onclick="window.location='{{ project.button[1] }}'">
<button class="btn btn-secondary project-btn"
onclick="event.stopPropagation(); window.location='{{ project.button[1] }}'">
{{ project.button[0] }}
</button>
{% endif %}