firq-dev-website/src/components/technologyCard.astro

78 lines
1.4 KiB
Text
Raw Normal View History

---
export interface Props {
2023-03-09 10:44:18 +00:00
title: string
link: string
image: string
}
2023-03-09 10:44:18 +00:00
const { image, link, title } = Astro.props
const icon: string = `background-image: url('/assets/technologies/${image}.webp')`
---
2023-03-09 10:44:18 +00:00
<a href={link} target="_blank" rel="noopener noreferrer" aria-label={title}>
2023-03-09 10:44:18 +00:00
<article>
<div style={icon}>
<span>
<h2>{title}</h2>
</span>
2023-03-09 10:44:18 +00:00
</div>
</article>
</a>
<style>
a {
text-decoration: none;
}
2023-03-09 10:44:18 +00:00
article {
2023-03-05 20:58:01 +00:00
background-color: var(--c-darkergray);
border-color: var(--c-darkgray);
padding: 10px;
text-align: center;
transition: transform var(--speed) var(--ease);
height: auto;
width: auto;
line-height: 100px;
2023-03-09 10:44:18 +00:00
}
article:hover {
transform: scale(var(--hover-scale));
2023-03-09 10:44:18 +00:00
}
article > div {
display: flex;
justify-content: center;
align-items: center;
background-size: contain;
width: 100px;
height: 100px;
2023-03-09 10:44:18 +00:00
}
article:hover span {
padding: 0 0.5rem;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background-color: var(--c-darkgray);
height: 100%;
width: 100%;
opacity: 90%;
}
2023-03-09 10:44:18 +00:00
article:hover h2 {
margin: 0;
display: inline-flex;
font-weight: bold;
color: white;
font-size: 18px;
line-height: 150%;
2023-03-09 10:44:18 +00:00
}
2023-03-09 10:44:18 +00:00
article h2 {
display: none;
2023-03-09 10:44:18 +00:00
}
article span {
display: none;
}
2023-03-09 10:44:18 +00:00
</style>