Guest User

Untitled

a guest
Jun 20th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. /**
  2. * testDabblet
  3. */
  4.  
  5. div {
  6. background-color: white;
  7. width: 150px;
  8. color: black;
  9. text-align: center;
  10. transition: all .3s ease-in;
  11. padding: 10px;
  12. border-top-left-radius: 20px;
  13. border-top-right-radius: 20px;
  14. font-weight: bold;
  15. border: black solid 2px;
  16. }
  17.  
  18. div:hover {
  19. background-color: black;
  20. color: white;
  21. transition: all .3s ease-in;
  22. cursor: pointer;
  23. }
Add Comment
Please, Sign In to add comment