Skip to content

Commit 214af4f

Browse files
committed
Fix size of embedded YouTube videos on mobile
1 parent 788836d commit 214af4f

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

_posts/2011-07-26-musteatbrains.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ The marketplace description:
2626
2727
The trailer:
2828

29-
<iframe width="560" height="315" src="https://www.youtube.com/embed/MseOrMhWtyM?si=iKWPCYaJQ4nu1xp7" 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></iframe>
29+
<iframe class="embeddedVideo" src="https://www.youtube.com/embed/MseOrMhWtyM?si=iKWPCYaJQ4nu1xp7" 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></iframe>
3030

3131
Download it for your Windows Phone [here](http://windowsphone.com/s?appid=feabce8d-c6af-e011-a53c-78e7d1fa76f8).

_posts/2025-02-13-First-50-Songs-You-Should-Play-On-Bass.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pre {
1717
As I learned to play guitar first, my bass guitar playing is a but too... guitar-like. Poking around on YouTube I came across a video that goes through [50 songs to learn on bass](https://www.youtube.com/watch?v=vWXgxssar9M). I thought I'd try walking through that myself, grabbing tab for each. And as long as I'm doing that, I might as well share.
1818
<!--more-->
1919

20-
<iframe width="560" height="315" src="https://www.youtube.com/embed/vWXgxssar9M?si=ggud8eh5Y09_yTeP" 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></iframe>
20+
<iframe class="embeddedVideo" src="https://www.youtube.com/embed/vWXgxssar9M?si=ggud8eh5Y09_yTeP" 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></iframe>
2121

2222
### 1. [Talking Heads - Psycho Killer (1977)](https://tabs.ultimate-guitar.com/tab/talking-heads/psycho-killer-bass-1065)
2323

public/css/site.css

+11
Original file line numberDiff line numberDiff line change
@@ -268,4 +268,15 @@ a.feature:hover {
268268
.feature:hover h2 + div,
269269
.feature:hover h3 + div {
270270
color: #FFF8FF;
271+
}
272+
273+
iframe.embeddedVideo {
274+
width: 560px;
275+
height: 315px;
276+
}
277+
@media (max-width: 480px) {
278+
iframe.embeddedVideo {
279+
width: 100%;
280+
height: 270px;
281+
}
271282
}

0 commit comments

Comments
 (0)