optimization and scrolling to load more courses
This commit is contained in:
@@ -21,6 +21,21 @@
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.loader {
|
||||
border: 10px solid #f3f3f3; /* Light grey */
|
||||
border-top: 10px solid #bf5700; /* Blue */
|
||||
border-radius: 50%;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
display: none;
|
||||
animation: spin 2s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% { transform: rotate(0deg); }
|
||||
100% { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
/* The Close Button */
|
||||
|
||||
.close {
|
||||
|
||||
Reference in New Issue
Block a user