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

83 lines
1.6 KiB
Text
Raw Normal View History

---
export interface Props {
2023-03-09 10:44:18 +00:00
site: string
link: string
image: string
}
const { image, link, site } = Astro.props
const icon: string = `background-image: url('/assets/social/${image}.webp')`
---
2023-03-11 18:59:51 +00:00
<a href={link} target="_blank" rel="noopener noreferrer" aria-label={site}>
2023-03-09 10:44:18 +00:00
<article class="contact do-hover">
<div style={icon}>
<span>
<h2>{site}</h2>
</span>
</div>
2023-03-09 10:44:18 +00:00
</article>
</a>
<style>
a {
text-decoration: none;
}
2023-07-08 13:02:07 +00:00
article div {
border-radius: 1.25rem;
background-size: contain;
display: flex;
align-items: center;
justify-content: center;
--size-value: 6.25rem;
width: var(--size-value);
height: var(--size-value);
}
article:hover span {
2023-07-08 13:02:07 +00:00
border-radius: 1.25rem;
padding: 0 0.5rem;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background-color: var(--c-darkgray);
2023-07-08 13:02:07 +00:00
height: calc(var(--size-value) + 0.1rem);
width: calc(var(--size-value) + 0.1rem);
opacity: 90%;
}
article:hover h2 {
margin: 0;
display: inline-flex;
font-weight: bold;
2023-03-09 10:44:18 +00:00
color: white;
font-size: 18px;
}
article h2 {
display: none;
}
article span {
display: none;
}
2023-03-09 10:44:18 +00:00
article {
2023-07-08 13:02:07 +00:00
border-radius: 1.25rem;
display: flex;
align-items: center;
justify-content: center;
2023-03-09 10:44:18 +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;
2023-03-09 10:44:18 +00:00
}
a:hover {
transform: scale(var(--hover-scale));
}
</style>