OOOOPS. Your browser seems to be too old for this. Please update your browser.
Teutonic CSS
Use it

Loading button

Interactive example: Click the “Click me” button to add a loading state and disable the button.

<button class="pa_m text_xl button prime" id="docsAddLoading">Click me</button>

<script>
  // Don't copy! It's just for demo purposes.
  document.querySelector('#docsAddLoading').addEventListener('click', function() { 
    this.setAttribute('disabled', 'true');
    this.classList.add('loading');
  });
</script>