This repository has been archived by the owner on Mar 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* animation in testimonials section * testimonials to and fro animation added
- Loading branch information
1 parent
d22cc28
commit 185fa0a
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
:root{ | ||
scrollbar-color:#000000 white !important; | ||
scrollbar-width:thin !important; | ||
} | ||
::-webkit-scrollbar-track { | ||
border: 1px solid gray; | ||
background-color: #f5f5f5; | ||
border-radius: 10px; | ||
} | ||
::-webkit-scrollbar { | ||
width: 10px; | ||
background-color: #f5f5f5; | ||
} | ||
::-webkit-scrollbar-thumb { | ||
border-radius: 10px; | ||
background-color: #000000; | ||
animation: animate 6s linear infinite; | ||
} | ||
#recommendation_grid{ | ||
position:relative; | ||
overflow: hidden; | ||
} | ||
.recommendation_slide{ | ||
position: relative; | ||
left: 0; | ||
top: 0; | ||
height: 100%; | ||
width: 250%; | ||
animation: slideshow 100s linear infinite; | ||
} | ||
@keyframes slideshow { | ||
0% { left: 0%; } | ||
50% { left: -150%; } | ||
100% { left: -0%; } | ||
} |