Skip to content

Commit 167b50d

Browse files
committed
Added manual vines, adjusted pressed dropdown button color
1 parent 7afc714 commit 167b50d

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

index.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,13 @@
8080

8181
<div id="vines" class="vines">
8282
</div>
83+
84+
<div id="manualVines" class="vines">
85+
<img src="img/bg/vine.png" width="32px" style="position: absolute; top: 0; left: 310px;">
86+
<img src="img/bg/vine.png" width="32px" style="position: absolute; top: 32px; left: 310px;">
87+
</div>
88+
89+
<!-- wyndchyme was here. The #manualVines are here so that even on video widths smaller than 540px, one set of vines is always present.-->
8390
</div>
8491

8592

style.css

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ body {
103103
}
104104

105105
.dropDownButton:active {
106-
filter: sepia(1) hue-rotate(180deg) brightness(0.85);
106+
filter: sepia(1) hue-rotate(180deg) brightness(1) saturate(1.5);
107107
cursor: pointer;
108108
}
109109

@@ -172,6 +172,16 @@ body {
172172
clip: rect(0, 100vw, 100vh, 0);
173173
}
174174

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

0 commit comments

Comments
 (0)