Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. body{
  2. background-color:#EEE;
  3. }
  4.  
  5. .member input{
  6. width: 50%;
  7. height: 60px;
  8. color: #33FF00;
  9. background-color: #FFF;
  10. font-size:30px;
  11. border-radius:5px;
  12. border:3px solid #33FF00;
  13. text-align:center;
  14. }
  15. .member input:hover {
  16. background-color: #33FF00;
  17. color: #FFF;
  18. font-size:30px;
  19. border-radius:20px;
  20. border:3px solid #FFF;
  21. }
  22. .circle {
  23. width:100px;
  24. height:100px;
  25. }
  26.  
  27. .circle img {
  28. width:100px;
  29. height:100px;
  30. border-radius: 100px;
  31. border:1px solid #00CC00;
  32. -webkit-border-radius: 100px;
  33. -moz-border-radius: 100px;
  34. }
  35. button{
  36. width:20%;
  37. background-color:#FFF;
  38. color:#038cfc;
  39. border:1px solid #038cfc;
  40. }
  41. button:hover{
  42. background-color:#038cfc;
  43. color:#FFF;
  44. border:1px solid #FFF;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement