chernov2000

Красивая радиокнопка

Sep 14th, 2022
61
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. .__pf [data-pf-type="ProductVariantSwatches"] input[type=radio] {
  2. -webkit-appearance: none;
  3. -moz-appearance: none;
  4. appearance: none;
  5. background-color: #fff;
  6. margin: 0;
  7. font: inherit;
  8. color: currentColor;
  9. width: 18px;
  10. height: 18px;
  11. border: 2.5px solid currentColor;
  12. border-radius: 50%;
  13. transform: translateY(-0.075em);
  14. display: grid;
  15. place-content: center;
  16. }
  17. .__pf [data-pf-type="ProductVariantSwatches"] input[type="radio"]::before {
  18. content: "";
  19. width: 10px;
  20. height: 10px;
  21. border-radius: 50%;
  22. transform: scale(0);
  23. transition: 120ms transform ease-in-out;
  24. box-shadow: inset 1em 1em rebeccapurple;
  25. }
  26. .__pf [data-pf-type="ProductVariantSwatches"] input[type="radio"]:checked::before {
  27. transform: scale(1);
  28. }
Comments
  • chernov2000
    1 year
    Comment was deleted
  • chernov2000
    1 year
    # text 0.45 KB | 0 0
    1. HTML:
    2. <div class="__pf" data-pf-type="ProductVariantSwatches">
    3. <form action="">
    4. <input type="radio" name="1">
    5. <input type="radio" name="1">
    6. <input type="radio" name="1">
    7. <input type="radio" name="1">
    8. <input type="radio" name="1">
    9. <input type="radio" name="1">
    10. <input type="radio" name="1">
    11. <input type="radio" name="1">
    12.  
    13. </form>
    14. </div>
Add Comment
Please, Sign In to add comment