2023-01-20 23:43:00 +00:00
|
|
|
---
|
|
|
|
export interface Props {
|
|
|
|
title: string;
|
|
|
|
link: string;
|
|
|
|
image: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { image, link, title } = Astro.props;
|
|
|
|
|
2023-03-05 00:11:34 +00:00
|
|
|
const icon: string = `background: url('/fgosite/ta_icons/${image}.webp')`
|
2023-01-20 23:43:00 +00:00
|
|
|
---
|
2023-01-27 10:16:01 +00:00
|
|
|
<a href={link} target="_blank" rel="noopener noreferrer" aria-label={title}>
|
2023-01-20 23:43:00 +00:00
|
|
|
<article>
|
|
|
|
<div style={icon}>
|
|
|
|
<h2>{title}</h2>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
article {
|
|
|
|
background-color: rgb(27, 27, 27);
|
|
|
|
border-color: #1e1e1e;
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
|
|
|
transition: transform var(--speed) var(--ease);
|
|
|
|
height: auto;
|
|
|
|
width: auto;
|
|
|
|
line-height: 128px;
|
|
|
|
}
|
|
|
|
article:hover {
|
|
|
|
transform: scale(var(--hover-scale));
|
|
|
|
}
|
|
|
|
article > div {
|
|
|
|
width: 128px;
|
|
|
|
height: 128px;
|
|
|
|
object-fit: cover;
|
|
|
|
object-position: 0% 0%;
|
|
|
|
}
|
|
|
|
|
|
|
|
article:hover h2 {
|
|
|
|
color: white;
|
|
|
|
background-color: #1e1e1e;
|
|
|
|
font-size: 18px;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: bottom;
|
|
|
|
line-height: normal;
|
|
|
|
width: 90%;
|
|
|
|
border-radius: 5px;
|
|
|
|
opacity: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
article h2 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
</style>
|