1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00

Improve shading even moer

This commit is contained in:
Steffo 2022-06-05 17:51:02 +02:00
parent 9ad1145720
commit 2132f6b8cf
Signed by: steffo
GPG key ID: 6965406171929D01
3 changed files with 3 additions and 3 deletions

View file

@ -1,3 +1,3 @@
.icon {
filter: drop-shadow(1px 1px 0 var(--background));
filter: drop-shadow(1px 1px 2px var(--background));
}

View file

@ -15,6 +15,7 @@
.view-landing-titles {
grid-area: titles;
text-shadow: 2px 2px 4px var(--background);
}
.view-landing-titles-title {

View file

@ -6,13 +6,12 @@ body {
color: var(--foreground);
font-family: sans-serif;
text-shadow: 1px 1px 0 var(--background);
text-shadow: 1px 1px 2px var(--background);
min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
text-shadow: 2px 2px 0 var(--background);
margin: 0;
}