Saturday CSS

Bite-sized web styling, delivered every weekend.

Episode 01: Hidden Hover Sidebar

<button class="animated-btn">
  Hover Me
</button>
.animated-btn {
  padding: 12px 24px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.animated-btn:hover {
  transform: scale(1.1);
}
    ×