Guest User

Untitled

a guest
Jan 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. input[type="checkbox"] {
  2. display: none;
  3. }
  4.  
  5. input[type="checkbox"] + label {
  6. display: flex;
  7. align-items: center;
  8. }
  9.  
  10. input[type="checkbox"] + label:before {
  11. content: '⬜️';
  12. margin-right: 20px;
  13. }
  14.  
  15. input[type="checkbox"]:checked + label:before {
  16. content: '🌹';
  17. }
Add Comment
Please, Sign In to add comment