feat(cosmetics): updated background for home and error page, updated title

This commit is contained in:
2022-08-02 19:33:15 +01:00
parent f843c196df
commit 06ef22a8bc
5 changed files with 58 additions and 8 deletions

View File

@@ -385,14 +385,13 @@ p.img-404 {
}
.btn-http-error {
font-size: .8em;
font-size: 1em;
display: flex;
justify-content: center;
a {
display: inline-block;
border: 2px solid $text;
border-radius: 5px;
padding: 5px;
transition-property: color, border-color;
transition: 0.5s;
&:first-child {
margin-right: 1em;
@@ -419,6 +418,26 @@ p.img-404 {
#home-title {
margin: 0;
text-align: center;
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
#caret {
display: inline-block;
margin-left: 6px;
width: 20px;
animation: fadein 0.75s alternate infinite;
}
#usrid {
color:rgb(27, 138, 33)
}
}
#home-subtitle {
@@ -938,3 +957,22 @@ a.footnote-ref {
right: 1.2em;
}
}
.toxicGlow {
background: rgb(25,221,22);
background: linear-gradient(45deg, rgba(25,221,22,1) 0%, rgba(0,0,0,1) 57%);
background-size: 200% 200%;
animation: toxicGlow 5s ease-in-out infinite;
}
@keyframes toxicGlow {
0% {
background-position: 80% 50%;
}
50% {
background-position: 90% 50%;
}
100% {
background-position: 80% 50%;
}
}