Skip to content

Commit f2b218f

Browse files
committed
Added left vines for smaller video widths
1 parent 86baa57 commit f2b218f

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@
3434

3535
<div id="vines" class="vines">
3636
</div>
37+
38+
<div class="vines" id="leftVines">
39+
<img src="img/bg/vine.png" style="width: 32px; position: absolute; left: 32px; top: 0;">
40+
<img src="img/bg/vine.png" style="width: 32px; position: absolute; left: 32px; top: 32px;">
41+
</div>
3742
</div>
3843

3944

style.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,16 @@ body {
173173
clip: rect(0, 100vw, 100vh, 0);
174174
}
175175

176+
#leftVines {
177+
display: none;
178+
}
179+
180+
@media (max-width: 550px) {
181+
#leftVines {
182+
display: block;
183+
}
184+
}
185+
176186
.text-container {
177187
display: flex;
178188
flex-wrap: wrap;

0 commit comments

Comments
 (0)