UT

CSS Button Generator

Design and generate custom CSS buttons.

.button {
  background-color: #3b82f6;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s;
}
.button:hover {
  opacity: 0.9;
}