You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whether you're a developer, DevOps engineer, or simply curious about macOS virtualization, there's a place for you here!
<style>
.columns {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
padding-top: 4rem;
}
/* For small devices, stack the columns */
@media (max-width: 768px) {
.columns {
grid-template-columns: 1fr;
}
}
.columns h2 {
border: none;
font-size: xx-large;
margin-top: 0rem; /* Adjust this value to control the space between the image and title */
}
.columns a {
text-decoration: none;
color: inherit;
display: block; /* Ensures the link is a block element */
overflow: hidden; /* Hides the overflowing part of the zoomed image */
}
.columns a img {
transition: transform 0.3s ease; /* Smooth transition for the zoom effect */
}
.columns a:hover img {
transform: scale(1.05); /* Slightly zoom in the image */
}
</style>