Skip to content

Commit b3a07ff

Browse files
committed
update posters page
1 parent 3ae44ad commit b3a07ff

24 files changed

Lines changed: 520 additions & 105 deletions

_sass/_components.scss

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,4 +179,72 @@ section {
179179
font-weight: bold;
180180
font-size: x-large;
181181
}
182+
183+
/* Posters */
184+
.poster-entry {
185+
display: flex;
186+
flex-wrap: wrap;
187+
align-items: flex-start;
188+
gap: 20px;
189+
margin-bottom: 30px;
190+
}
191+
192+
.poster-text {
193+
flex: 3;
194+
min-width: 300px;
195+
}
196+
197+
.poster-thumb {
198+
flex: 1;
199+
min-width: 150px;
200+
201+
a {
202+
display: block;
203+
position: relative;
204+
overflow: hidden;
205+
206+
&::after {
207+
content: "\f00e"; // fa-search-plus
208+
font: var(--fa-font-solid);
209+
position: absolute;
210+
top: 50%;
211+
left: 50%;
212+
transform: translate(-50%, -50%) scale(0.5);
213+
font-size: 2.5rem;
214+
color: $light-color;
215+
background-color: rgba(0, 0, 0, 0.45);
216+
width: 3rem;
217+
height: 3rem;
218+
border-radius: 50%;
219+
display: flex;
220+
align-items: center;
221+
justify-content: center;
222+
opacity: 0;
223+
transition: opacity 0.25s ease, transform 0.25s ease;
224+
}
225+
226+
&:hover::after {
227+
opacity: 1;
228+
transform: translate(-50%, -50%) scale(1);
229+
}
230+
231+
img {
232+
width: 100%;
233+
max-width: 100%;
234+
height: auto;
235+
padding: 0;
236+
display: block;
237+
transition: filter 0.25s ease;
238+
}
239+
240+
&:hover img {
241+
filter: brightness(0.75);
242+
}
243+
}
244+
}
245+
246+
h2,
247+
h3 {
248+
clear: both;
249+
}
182250
}

_site/assets/css/main.css

Lines changed: 59 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_site/assets/css/main.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_site/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.css">
3737
</link>
3838
<!-- style css -->
39-
<link rel="stylesheet" href="/assets/css/main.css?v=1771769882">
40-
<link rel="stylesheet" href="/assets/css/search.css?v=1771769882">
39+
<link rel="stylesheet" href="/assets/css/main.css?v=1771775676">
40+
<link rel="stylesheet" href="/assets/css/search.css?v=1771775676">
4141
<title>openDANES</title>
4242

4343

_site/nav/DANES-newsletters.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<head>
55

66
<!-- Google tag (gtag.js) -->
7-
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1E3LY698R5"></script>
7+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EN4RVX0B1S"></script>
88
<script>
99
window.dataLayer = window.dataLayer || [];
1010
function gtag() { dataLayer.push(arguments); }
1111
gtag('js', new Date());
1212

13-
gtag('config', 'G-1E3LY698R5');
13+
gtag('config', 'G-EN4RVX0B1S');
1414
</script>
1515

1616
<meta charset="utf-8">
@@ -36,8 +36,8 @@
3636
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.css">
3737
</link>
3838
<!-- style css -->
39-
<link rel="stylesheet" href="/assets/css/main.css?v=1771769882">
40-
<link rel="stylesheet" href="/assets/css/search.css?v=1771769882">
39+
<link rel="stylesheet" href="/assets/css/main.css?v=1771775676">
40+
<link rel="stylesheet" href="/assets/css/search.css?v=1771775676">
4141
<title>openDANES</title>
4242

4343

_site/nav/about.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.css">
3737
</link>
3838
<!-- style css -->
39-
<link rel="stylesheet" href="/assets/css/main.css?v=1771769882">
40-
<link rel="stylesheet" href="/assets/css/search.css?v=1771769882">
39+
<link rel="stylesheet" href="/assets/css/main.css?v=1771775676">
40+
<link rel="stylesheet" href="/assets/css/search.css?v=1771775676">
4141
<title>openDANES</title>
4242

4343

0 commit comments

Comments
 (0)