A webpage with multiple sliding images of houses.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
1.1 KiB

4 years ago
#slider {
overflow: hidden;
4 years ago
}
#slider figure {
align-items: center;
position: absolute;
width: 300%;
margin: 0;
left: 0;
animation: slider 5s linear 1s infinite;
4 years ago
}
#slider figure img {
float: left;
4 years ago
}
@keyframes slider {
0% {
left:0;
}
25% {
left: -25%;
}
75% {
left: -50%;
}
100% {
left: -75%;
}
}
4 years ago
#black {
color: black;
font-family: Verdana;
font-style: bold;
}
#white {
color: white;
font-family: Verdana;
font-style: bold;
}
#CG {
color: black;
font-family: Elephant;
}
#myProgress {
width: 50%;
background-color: grey;
}
#myBar {
width: 1%;
height: 5px;
background-color: black;
}
a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
}
a:hover {
background-color: #ddd;
color: black;
}
.previous {
background-color: #f1f1f1;
color: black;
}
.next {
background-color: #f1f1f1;
color: black;
}
.round {
border-radius: 50%;
}