Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
vladiK178 authored Jan 22, 2025
1 parent 50267c1 commit dccb034
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,26 @@ h1 {
transform: scale(1.1);
}

/* Scrollbar-Styling */
::-webkit-scrollbar {
width: 10px; /* Breite der Scrollbar */
}

::-webkit-scrollbar-track {
background: #1e293b; /* Hintergrund der Scrollbar-Leiste */
border-radius: 5px; /* Abgerundete Ecken */
}

::-webkit-scrollbar-thumb {
background: #0f172a; /* Farbe des Scrollbalkens */
border-radius: 5px; /* Abgerundete Ecken */
border: 2px solid #1e293b; /* Rand um den Scrollbalken */
}

::-webkit-scrollbar-thumb:hover {
background: #4b5563; /* Hover-Farbe des Scrollbalkens */
}

@media (max-width: 768px) {
#gallery {
gap: 15px;
Expand Down

0 comments on commit dccb034

Please sign in to comment.