-
Notifications
You must be signed in to change notification settings - Fork 298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blur Background #71
Comments
To do this you will need to remove the background-position: 50% 50%;
background-size: cover;
transition: opacity .25s ease-out; Then you will need to add the following code to content: "";
position: fixed;
left: -5%;
top: -5%;
right: 0;
z-index: -1;
display: block;
background-size: cover;
width: 110%;
height: 110%;
filter: blur(5px); /* Change this to change the amount of blur */ Then when applying the image you need to apply it to |
This is now in Tabliss :) |
Partly reverts 7dd413c
A blurred background should offer better text visibility in comparison to a slightly darkened one which usually does not have much effect for images with light colours.
The text was updated successfully, but these errors were encountered: