Skip to content
Snippets Groups Projects
Commit 387a71d4 authored by Gabriel Copat's avatar Gabriel Copat
Browse files

Updated allTrails css with animations and different image styles for trail list

parent 6dc3acae
No related branches found
No related tags found
1 merge request!11Resolve "As a user, I want to see all trails across a town and seamlessly move between them."
...@@ -14,22 +14,39 @@ ...@@ -14,22 +14,39 @@
} }
.listA{ .listA{
display: flex;
flex: 1 1; flex: 1 1;
background-color: black; padding: 15px;
color: white; transition: background-color 0.5s ease-out 100ms;
padding: 10px; border-radius: 20px;
} }
.listA:hover{ .listA:hover{
background-color: #656565; /*background-color: #656565;*/
color: white; }
.trailsImages {
flex: 1 1;
width: 150px;
border-radius: 20px;
transition: 0.5s ease-out 100ms;
} }
.trailsImages:hover {
box-shadow: 0 0 30px #bbbb00;
transform: scale(1.2,1.2);
}
.selected { .selected {
color: red; box-shadow: 0 0 30px yellow;
} }
.trailInfoBox { .trailInfoBox {
/*opacity: 0;*/ animation: fadeIn 3s;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes fadeGrey {
0% {}
100% { background-color: #656565 }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment