This commit is contained in:
2025-02-06 10:43:33 -06:00
parent 37b053b501
commit 1775f26709

View File

@@ -5,46 +5,53 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Profound Programmer</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f8f8f8;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
padding: 20px;
}
.gallery img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 8px;
cursor: pointer;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.1);
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
}
.modal img {
max-width: 90%;
max-height: 90%;
border-radius: 10px;
}
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f8f8f8;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
padding: 20px;
}
.gallery img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 8px;
cursor: pointer;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.1);
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
}
.modal img {
max-width: 90%;
max-height: 90%;
border-radius: 10px;
}
.footer {
margin-top: 20px;
}
.twitter-icon {
width: 32px;
height: 32px;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Q5E58C7FQJ"></script>
<script>
@@ -93,5 +100,10 @@
});
});
</script>
<div class="footer">
<a href="https://x.com/aaaljaz" target="_blank">
<img src="https://abs.twimg.com/icons/apple-touch-icon-192x192.png" class="twitter-icon" alt="Twitter">
</a>
</div>
</body>
</html>