Startpage Clean up

This commit is contained in:
Norm Rasmussen
2022-08-05 10:32:42 -04:00
parent f95a314ef4
commit d11a11f66f
4 changed files with 56 additions and 27 deletions

View File

@ -16,6 +16,14 @@
}
body {
margin-bottom: 0;
flex-grow: 1;
background: linear-gradient(145deg, #179160, #096F8E, #F7BB17, #D64A28, #00283C);
background-size: 700% 550%;
animation: gradient 7s ease-in-out infinite;
height: 125vh;
margin-top: -100px;
padding-top: 100px;
color: var(--text-light);
font-family: 'Inter', sans-serif;
@ -25,6 +33,18 @@ body {
box-sizing: border-box;
}
@keyframes gradient {
0% {
background-position: 0% 79%;
}
50% {
background-position: 100% 22%;
}
100% {
background-position: 0% 79%;
}
}
h1 {
font-size: 4rem;
font-weight: bold;