//SPLASH FADE
if(document.getElementById("splashFade"))
{
var source = document.getElementById("splashFade").src;
$("#splashContainer").css({"background-image":'url(' + source + ')'});
$("#splashGradient").css({"display": "block"});
$("#splashContainer").css({
"display": "block",
"opacity": "1"});
$(".hideOnSplash").css({"display": "none"});
$("#splashTint").css({"display": "none"});
$("li.post.text").css({
"position": "relative",
"margin-top": "-30vh"
});
$(".header").css({
"position": "absolute",
"top": "1rem"});
$(".backButton").css({
"border": "none",
"color": "white"});
//If screen is 480px or smaller
if (matchMedia('only screen and (max-width: 480px)').matches)
{
var newHeight = $(window).height();
var newWidth = $(window).width();
$('#splashContainer').height(newHeight);
$("#splashGradient").height(newHeight);
$(".header").css({"top": "1rem"});
$("li.post.text").css({"margin-top": "-20vh"});
}
}