Skip to content

Commit 23d3030

Browse files
committed
feat: update slides for RivieraDev
1 parent 0bcb433 commit 23d3030

File tree

4 files changed

+31
-11
lines changed

4 files changed

+31
-11
lines changed

src/layouts/Layout.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ const { title } = Astro.props;
121121
}
122122

123123
.reveal img.diagram {
124-
height: 70dvh;
124+
height: 65dvh;
125+
max-height: none;
125126
width: auto;
126127
// There is an unwanted white border at the top of all images but I don't want to edit them all
127128
clip-path: polygon(0% 2%, 100% 2%, 100% 100%, 0% 100%);

src/slides/0-intro/Title.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
import Slide from "../../components/Slide.astro";
33
import introBackground from "./assets/intro-background.jpg";
4-
import devoxxLogo from "./assets/devoxx-logo.webp";
4+
import riviera from "./assets/riviera.svg";
55
---
66

77
<Slide data-background-image={introBackground.src} style="top: 0;">
88
<div class="content">
99
<span class="event">
10-
<img data-src={devoxxLogo.src} alt="Devoxx Logo" />
11-
<span class="date">17/04/2025</span>
10+
<img data-src={riviera.src} alt="RivieraDev Logo" />
11+
<span class="date">08/07/2025</span>
1212
</span>
1313
<div class="title">
1414
<h1>
@@ -64,7 +64,7 @@ import devoxxLogo from "./assets/devoxx-logo.webp";
6464
font-size: 0.9em;
6565

6666
img {
67-
height: 12svh;
67+
height: 10svh;
6868
width: auto;
6969
}
7070
}

src/slides/0-intro/assets/riviera.svg

Lines changed: 21 additions & 0 deletions
Loading

src/slides/4-outro/TheEnd.svelte

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import fragmentRgb from "../2-representation-of-colors/srgb/rgb-3d.frag";
1111
import fragmentHsl from "../2-representation-of-colors/srgb/hsl-3d.frag";
1212
import fragmentHsv from "../2-representation-of-colors/srgb/hsv-3d.frag";
13-
import zenikaLogo from "./assets/zenika-logo.png";
1413
import srgb from "../3-color-space-for-humans/assets/srgb.mov";
1514
import { useGlslCanvas } from "../../webgl/renderer";
1615
@@ -49,9 +48,6 @@
4948
<img data-src={shadertoy.src} alt="shadertoy" />
5049
</a>
5150
</div>
52-
<a href="https://zenika.com">
53-
<img class="zenika" data-src={zenikaLogo.src} alt="Zenika Logo" />
54-
</a>
5551
</div>
5652

5753
<a href="https://bento.me/jsulpis-talk-color-science">
@@ -87,6 +83,7 @@
8783
.me {
8884
text-align: center;
8985
padding-top: 5%;
86+
transform: scale(1.2);
9087
9188
h1 {
9289
font-size: 3.5rem;
@@ -108,8 +105,9 @@
108105
}
109106
}
110107
img.zenika {
111-
height: 2em;
112-
margin-top: 1em;
108+
height: 1.5em;
109+
margin-top: 2em;
110+
margin-bottom: -1em;
113111
}
114112
.qr {
115113
width: min(40dvh, 100%);

0 commit comments

Comments
 (0)