Brutalist Mono

Brutalist Mono: CSS-Button. Kopiere die Regeln oder den Prompt, der das Ergebnis nachbaut.

brutalistmonospacesquareinverted-hover

CSS
.btn-046 {
  font: 700 14px/1 ui-monospace,Menlo,monospace;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  border-radius: 0;
  padding: 12px 20px;
  cursor: pointer;
  transition: none
}
.btn-046:hover {
  background: #000;
  color: #fff
}
.btn-046:focus-visible {
  outline: 2px dashed #000;
  outline-offset: 3px
}
.btn-046:active {
  background: #333;
  color: #fff
}
HTML
<button class="btn-046">[ SUBMIT ]</button>
Prompt

Ein karger brutalistischer Monospace-Button: weiße Füllung, 2px schwarzer Rahmen, eckige Ecken, schwarzer 14px bold Monospace-Text "[ SUBMIT ]", 12px mal 20px Padding, kein Schatten, keine Transitions. Hover invertiert sofort auf Schwarz mit weißem Text; active #333. Fokus-Outline 2px gestrichelt Schwarz.