Guest User

Untitled

a guest
Dec 13th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <div id="container">
  2. <div class="card">
  3. <header>Three State Checkbox</header>
  4. <div class="content">
  5. <div class="row">
  6. <span class="checkbox"></span>
  7. <span class="label">Neutral</span>
  8. </div>
  9. <div class="row">
  10. <span class="checkbox positive">
  11. <svg id="i-checkmark" viewBox="0 0 32 32" width="20" height="20" fill="none" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="10.9375%">
  12. <path d="M2 20 L12 28 30 4" />
  13. </svg>
  14. </span>
  15. <span class="label">Positive</span>
  16. </div>
  17. <div class="row">
  18. <span class="checkbox negative">
  19. <svg id="i-close" viewBox="0 0 32 32" width="20" height="20" fill="none" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="10.9375%">
  20. <path d="M2 30 L30 2 M30 30 L2 2" />
  21. </svg>
  22. </span>
  23. <span class="label">Negative</span>
  24. </div>
  25. </div><!-- /.content -->
  26. </div><!-- /.card -->
  27. <p><small>Third state cycles back to first</small></p>
  28. </div><!-- /.container -->
Add Comment
Please, Sign In to add comment