19 / 24
CSS

Scrollbar Customization

.scrollbar-1::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}
.scrollbar-1::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  border-radius: 4px;
  border: 2px solid #f5f5f5;
}
.scrollbar-1::-webkit-scrollbar-track {
  background-color: #e2e2e2;
  border-radius: 4px;
}
 
/* 2 */
.scrollbar-2::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}
.scrollbar-2::-webkit-scrollbar-thumb {
  background: #4a90e2;
  border-radius: 10px;
}
.scrollbar-2::-webkit-scrollbar-track {
  background-color: #e2e2e2;
  border-radius: 10px;
}
 
/* 3 */
.scrollbar-3::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}
.scrollbar-3::-webkit-scrollbar-thumb {
  background: #50c878;
  border: 2px solid #f5f5f5;
}
.scrollbar-3::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
/* 4 */
.scrollbar-4::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
}
.scrollbar-4::-webkit-scrollbar-thumb {
  background: #9b59b6;
  border-radius: 20px;
}
.scrollbar-4::-webkit-scrollbar-track {
  background-color: transparent;
}
 
/* 5 */
.scrollbar-5::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}
.scrollbar-5::-webkit-scrollbar-thumb {
  background: #e74c3c;
  border-radius: 4px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.scrollbar-5::-webkit-scrollbar-track {
  background-color: #e2e2e2;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}
 
/* 6 */
.scrollbar-6::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}
.scrollbar-6::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #f1c40f, #e67e22, #e74c3c);
  border-radius: 8px;
}
.scrollbar-6::-webkit-scrollbar-track {
  background: linear-gradient(45deg, #ecf0f1, #bdc3c7);
  border-radius: 8px;
}