Skip to content

Fix/correct meeting iframe links #118

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

Merged
merged 2 commits into from
Sep 25, 2024
Merged
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
26 changes: 13 additions & 13 deletions docs/schedule/2024Fall/Week2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ import Link from '@docusaurus/Link';
- **Time:** 6:30pm-8:00pm

### 🎥 Meeting Recording:
<div style={{maxWidth: "1280px"}}>
<div style={{
position: "relative",
paddingBottom: "56.25%",
height: 0,
overflow: "hidden",
borderRadius: "16px"
}}>
<iframe src="https://studentuml.sharepoint.com/sites/UMLCloudComputingClub/_layouts/15/embed.aspx?UniqueId=7f185a06-b058-48e7-b7eb-0322f93241db&embed=%7B%22ust%22%3Atrue%2C%22hv%22%3A%22CopyEmbedCode%22%7D&referrer=StreamWebApp&referrerScenario=EmbedDialog.Create"
width="1280" height="720" frameborder="0" scrolling="no"
allowfullscreen title="Kickstarter Event Presentation (9-13-2024).mp4"
className="meeting_recording_iframe">
<div class="container">
<iframe
src="https://www.youtube-nocookie.com/embed/kxAjBIDROjU?si=O8brH0bj9OChRQae"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
class="responsive-iframe"
style={{
borderRadius: '16px'
}}
>
</iframe>
</div>
</div>


Expand Down
28 changes: 14 additions & 14 deletions docs/schedule/2024Fall/Week3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ sidebar_position: 3
- **Time:** 6:30pm-8:00pm

### 🎥 Meeting Recording:
<div style={{maxWidth: "1280px"}}>
<div style={{
position: "relative",
paddingBottom: "56.25%",
height: 0,
overflow: "hidden",
borderRadius: "16px"
}}>
<iframe src="https://studentuml.sharepoint.com/sites/UMLCloudComputingClub/_layouts/15/embed.aspx?UniqueId=cfb2db45-790b-4bf6-8173-628eeb07fd57&embed=%7B%22ust%22%3Atrue%2C%22hv%22%3A%22CopyEmbedCode%22%7D&referrer=StreamWebApp&referrerScenario=EmbedDialog.Create"
width="1280" height="720" frameborder="0" scrolling="no"
allowfullscreen title="Week 2 (9-19-2024).mp4"
className="meeting_recording_iframe">
</iframe>
</div>
<div class="container">
<iframe
src="https://www.youtube-nocookie.com/embed/3MoItq_XC_c?si=eK-OyGjbIhwbgthZ"
title="Fall 2024 Week 2"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
class="responsive-iframe"
style={{
borderRadius: '16px'
}}
>
</iframe>
</div>

### 🚩 Agenda
Expand Down
17 changes: 17 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,23 @@
background-color: grey.800;
}

.container {
position: relative;
overflow: hidden;
width: 100%;
padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.responsive-iframe {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}

/* PaperCard Styles */
.papercard {
min-height: 350px;
Expand Down
Loading