itm325-projects/Assignment1/Assignment1/styles/site.css
2023-09-20 02:35:19 -06:00

57 lines
862 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;
}
footer {
color: steelblue;
}
h1 {
animation: 3s infinite alternate headingAnim;
font-size: 3rem;
}
h2 {
color: #FFBC42;
}
p {
color: steelblue;
font-size: 1.5rem;
}
img {
max-height: 7rem;
}
ul {
list-style-type: none;
}
@keyframes headingAnim {
from {
color: #FFBC42;
}
to {
color: steelblue;
}
}
@keyframes backgroundAnim {
from {
background-color: #161A25;
}
to {
background-color: #283044;
}
}