Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.91 KB | None | 0 0
  1. .donate-block{
  2.     width: 75%;
  3.     margin: 0 auto;
  4. }
  5.  
  6. .donate-block input{
  7.     width: 70%;
  8.     height: 40px;
  9.     background: rgba(0,0,0,0.6);
  10.     border: none;
  11.     border-radius: 5px;
  12.     outline: none;
  13.     color: #fff;
  14.     letter-spacing: 1px;
  15.     text-align: center;
  16.     margin: 20px 0;
  17. }
  18.  
  19. .donate-block input::placeholder{
  20.     color: #fff;
  21. }
  22.  
  23. .donate-block select{
  24.     width: 40%;
  25.     height: 40px;
  26.     background: rgba(0,0,0,0.6);
  27.     border: none;
  28.     border-radius: 5px;
  29.     outline: none;
  30.     color: #fff;
  31.     letter-spacing: 1px;
  32.     text-align: center;
  33.     text-align-last: center;
  34. }
  35.  
  36. .donate-block button{
  37.     font-size: 12px;
  38.     color: #fff;
  39.     padding: 10px 20px;
  40.     border: none;
  41.     border-radius: 50px;
  42.     cursor: pointer;
  43.     outline: none;
  44.     background: #6be619;
  45.     transition: .2s;
  46. }
  47.  
  48. .donate-block button:hover{
  49.     box-shadow: 0 0 8px #6be619;
  50.     transition: .2s;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement