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

108 lines
1.9 KiB
Text
Raw Normal View History

---
export interface Props {
date: string
2023-03-09 10:44:18 +00:00
title: string
link: string
image: string
2023-03-11 18:59:51 +00:00
user?: string
}
2023-03-11 18:59:51 +00:00
const { user, date, image, link, title } = Astro.props
const options_date: Intl.DateTimeFormatOptions = {
year: 'numeric',
month: '2-digit',
day: '2-digit',
}
const formatted_date = new Date(date).toLocaleDateString('de-DE', options_date)
const icon: string = `background: url('/ta_icons/${image}.webp')`
2023-03-11 18:59:51 +00:00
let hasuser = ''
if (user !== undefined) {
hasuser = 'hasuser'
}
---
2023-03-09 10:44:18 +00:00
2023-01-27 10:16:01 +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}>
<h2>{title}</h2>
</div>
<p>
2023-03-11 18:59:51 +00:00
<span class={hasuser}>
By {user}<br /> •
</span>
{formatted_date}
</p>
2023-03-09 10:44:18 +00:00
</article>
</a>
<style>
2023-03-11 18:59:51 +00:00
span {
display: none;
}
.hasuser {
display: flex;
}
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: 128px;
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 {
width: 128px;
height: 128px;
object-fit: cover;
object-position: 0% 0%;
2023-03-09 10:44:18 +00:00
}
2023-03-09 10:44:18 +00:00
article:hover h2 {
color: white;
2023-03-05 20:58:01 +00:00
background-color: var(--c-darkgray);
font-size: 18px;
display: inline-block;
vertical-align: bottom;
line-height: normal;
width: 90%;
opacity: 90%;
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
}
div {
display: flex;
justify-content: center;
align-items: center;
}
p {
display: flex;
text-align: center;
justify-content: center;
2023-03-11 18:59:51 +00:00
align-items: center;
line-height: 100%;
text-decoration: none;
color: white;
font-size: 1rem;
font-weight: bold;
padding-top: 0.5rem;
margin: 0.5rem 0px;
2023-03-11 18:59:51 +00:00
flex-wrap: wrap;
flex-direction: column;
}
2023-03-09 10:44:18 +00:00
</style>