itm325-projects/Assignment0/Assignment0/wwwroot/css/site.css
2023-09-20 02:34:44 -06:00

41 lines
646 B
CSS

html {
background-image: linear-gradient(to right, #283044, rgba(1.0, 1.0, 1.0, 0.0) 10%, rgba(1.0, 1.0, 1.0, 0.0) 90%, #283044);
animation: 3s infinite alternate backgroundAnim;
}
body {
margin-left: 10%;
margin-right: 10%;
font-family: "DejaVu Sans", "Segoe UI", monospace;
text-align: center;
}
h1 {
animation: 1s infinite alternate headingAnim;
font-size: 3rem;
}
p {
color: steelblue;
font-size: 1.5rem;
}
@keyframes headingAnim {
from {
color: #FFBC42;
}
to {
color: steelblue;
}
}
@keyframes backgroundAnim {
from {
background-color: #161A25;
}
to {
background-color: #283044;
}
}