Skip to content

feat: update slides for RivieraDev #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ const { title } = Astro.props;
}

.reveal img.diagram {
height: 70dvh;
height: 65dvh;
max-height: none;
width: auto;
// There is an unwanted white border at the top of all images but I don't want to edit them all
clip-path: polygon(0% 2%, 100% 2%, 100% 100%, 0% 100%);
Expand Down
8 changes: 4 additions & 4 deletions src/slides/0-intro/Title.astro
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
import Slide from "../../components/Slide.astro";
import introBackground from "./assets/intro-background.jpg";
import devoxxLogo from "./assets/devoxx-logo.webp";
import riviera from "./assets/riviera.svg";
---

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

img {
height: 12svh;
height: 10svh;
width: auto;
}
}
Expand Down
21 changes: 21 additions & 0 deletions src/slides/0-intro/assets/riviera.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 4 additions & 6 deletions src/slides/4-outro/TheEnd.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import fragmentRgb from "../2-representation-of-colors/srgb/rgb-3d.frag";
import fragmentHsl from "../2-representation-of-colors/srgb/hsl-3d.frag";
import fragmentHsv from "../2-representation-of-colors/srgb/hsv-3d.frag";
import zenikaLogo from "./assets/zenika-logo.png";
import srgb from "../3-color-space-for-humans/assets/srgb.mov";
import { useGlslCanvas } from "../../webgl/renderer";

Expand Down Expand Up @@ -49,9 +48,6 @@
<img data-src={shadertoy.src} alt="shadertoy" />
</a>
</div>
<a href="https://zenika.com">
<img class="zenika" data-src={zenikaLogo.src} alt="Zenika Logo" />
</a>
</div>

<a href="https://bento.me/jsulpis-talk-color-science">
Expand Down Expand Up @@ -87,6 +83,7 @@
.me {
text-align: center;
padding-top: 5%;
transform: scale(1.2);

h1 {
font-size: 3.5rem;
Expand All @@ -108,8 +105,9 @@
}
}
img.zenika {
height: 2em;
margin-top: 1em;
height: 1.5em;
margin-top: 2em;
margin-bottom: -1em;
}
.qr {
width: min(40dvh, 100%);
Expand Down
Loading