Skip to main content

CSS Input Generator

Build custom input styles with toggleable options.
Customize borders, focus states, hover effects, and more.

Reset / Remove Defaults

Border Options

1px
8px

Spacing

12px
10px

Colors

Typography

16px

Focus State

3px

Hover State

Other

.custom-input {
  outline: none;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 16px;
  background: #ffffff;
  color: #333333;
  transition: all 0.2s ease;
}

.custom-input::placeholder {
  color: #999999;
}

.custom-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.custom-input:hover {
  border-color: #d1d5db;
}