Power Button Checkbox

0 viewsmedium
Background:
Power Button Checkbox
1
2
3
4
5
6
7
8
<label class="power-container">
  <input type="checkbox" />
  <div class="power-checkmark">
    <svg viewBox="0 0 24 24">
      <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 15l-5-5 1.41-1.41L11 14.17l7.59-7.59L20 8l-9 9z"/>
    </svg>
  </div>
</label>
Was this helpful?

What is inside Power Button Checkbox

Power Button Checkbox is a CSS checkbox built with layered shadows, defined in 38 lines across 7 selectors.

14
CSS properties
7
Selectors
38
Lines of CSS
3
Formats

Techniques used

TransitionsShadowsActive stateChecked state

CSS properties in this component

backgroundborder-radiusbox-shadowcursordisplayfillheightinputmarginopacitypositiontransitionuser-selectwidth

Accessibility check1 to fix

  • Built on a native <label> element, so keyboard focus and screen reader semantics work without extra attributes.
  • No focus style is defined. Add one before shipping, or keyboard users lose track of position.

These notes are generated by reading this component's own source, so they describe what it actually does rather than what a template says. Copy the code above in HTML, CSS, Tailwind and adapt it freely.