1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
---
const { frontmatter, url } = Astro.props.project;
---
<div class="card">
<div class="titleCard" style={`background-image:url(${frontmatter.img})`}>
<h1 class="title">{frontmatter.title}</h1>
</div>
<div class="descCard">
<p class="desc">{frontmatter.description}</p>
<div class="tags">
Tagged:
{frontmatter.tags.map((t) => (
<div class="tag" data-tag={t}>
{t}
</div>
))}
</div>
<a class="link" href={url}>
<span class="linkInner">View</span>
</a>
</div>
</div>
<style>
.card {
position: relative;
color: var(--t-bg);
background: var(--t-fg);
border: 1px solid #f0f0f0;
}
.title {
position: absolute;
top: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
color: white;
flex-direction: column;
font-size: var(--f-u4);
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.0625em;
}
.titleCard {
position: relative;
background-size: cover;
background-position: 50% 100%;
padding-top: 37.5%;
}
.descCard {
padding: 1.5em;
}
.desc {
font-size: var(--f-u1);
line-height: 1.4;
margin-top: 0em;
margin-bottom: 1em;
}
.link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--t-bg);
font-size: var(--f-u2);
font-weight: 700;
background: rgba(0, 0, 0, 0.25);
opacity: 0;
text-decoration: none;
text-transform: uppercase;
transition: opacity 150ms linear;
}
.link:focus,
.link:hover {
opacity: 1;
}
.link:focus,
.link:hover .linkInner {
transform: translateY(0);
border-color: rgba(255, 255, 255, 0.625);
}
.linkInner {
padding: 0.375em 1em;
border: 2px solid rgba(255, 255, 255, 0);
transition: transform 300ms cubic-bezier(0, 0.4, 0.6, 1), border-color 1s linear;
transform: translateY(25%);
}
.nav {
display: flex;
justify-content: flex-end;
}
.tags {
font-size: var(--f-d2);
text-transform: uppercase;
}
.tag {
display: inline-block;
color: var(--c-yellow);
text-transform: uppercase;
margin-left: 0.5em;
}
.tag:nth-of-type(1n) {
color: var(--c-green);
}
.tag:nth-of-type(2n) {
color: var(--c-orange);
}
.tag:nth-of-type(3n) {
color: var(--c-blue);
}
.tag:nth-of-type(4n) {
color: var(--c-pink);
}
</style>
|