minor fixes
This commit is contained in:
parent
6665658f83
commit
dd9cc41fb2
|
@ -115,9 +115,9 @@ body {
|
||||||
.description {
|
.description {
|
||||||
border-radius: var(--border-radius);
|
border-radius: var(--border-radius);
|
||||||
background: var(--bg-alt);
|
background: var(--bg-alt);
|
||||||
box-shadow: 15px 15px 28px 24px var(--bg);
|
box-shadow: 15px 15px 28px 24px var(--bg-alt);
|
||||||
-webkit-box-shadow: 15px 15px 28px 24px var(--bg);
|
-webkit-box-shadow: 15px 15px 28px 24px var(--bg-alt);
|
||||||
-moz-box-shadow: 15px 15px 28px 24px var(--bg);
|
-moz-box-shadow: 15px 15px 28px 24px var(--bg-alt);
|
||||||
> * {
|
> * {
|
||||||
margin: 40px !important;
|
margin: 40px !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,11 +34,11 @@ video_path:
|
||||||
|
|
||||||
if (counter == (numberOfPosts - 1))
|
if (counter == (numberOfPosts - 1))
|
||||||
{
|
{
|
||||||
divRandomPosts.append('<a class="button" href="' + postHREF + '">🔥</a>');
|
divRandomPosts.replaceWith('<a class="button" href="' + postHREF + '">🔥</a>');
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
divRandomPosts.append('<a class="button" href="' + postHREF + '">🔥</a>');
|
divRandomPosts.replaceWith('<a class="button" href="' + postHREF + '">🔥</a>');
|
||||||
}
|
}
|
||||||
|
|
||||||
randomIndexUsed.push(randomIndex);
|
randomIndexUsed.push(randomIndex);
|
||||||
|
@ -73,7 +73,7 @@ video_path:
|
||||||
<ul>{% for app in site.data.navigation %}
|
<ul>{% for app in site.data.navigation %}
|
||||||
<li><a href="{{ app.url }}" {% if app.external_site == true %}rel="noopener" target="_blank"{% endif %} class="button">{{ app.icon }}</a></li>
|
<li><a href="{{ app.url }}" {% if app.external_site == true %}rel="noopener" target="_blank"{% endif %} class="button">{{ app.icon }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<li id="random_posts"></li>
|
<li id="random_posts"><a href="/discography" class="button">🔥</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue