UI

by phloe

HTML

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">

<button type="button">Click here</button>

CSS

body {
  color: #EEE;
  background: #333;
  font-family: 'Inter', sans-serif;
}

button {
  border: 0;
  background: linear-gradient(#444, #333);
  color: inherit;
  box-shadow:
    0 0.125rem 0.125rem rgba(0, 0, 0, 0.25),
    0 0.0625rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.125rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.125rem;
  font-family: inherit;
}

button:active {
  box-shadow:
    0 0 0.0625rem rgba(0, 0, 0, 0.5),
    0 0.0625rem 0 rgba(0, 0, 0, 0.25);
}