Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. input {
  2. width: 200px;
  3. height: 40px;
  4. display: inline-block;
  5. }
  6.  
  7. body {
  8. background-image: url(bigpic.jpg);
  9. background-repeat: no repeat;
  10. background-size: cover;
  11. }
  12.  
  13. .container {
  14. width: 20%;
  15. height: 200px;
  16. margin: auto;
  17. text-align: center;
  18. margin-top: 50px;
  19. background-color: #4b869a;
  20. opacity: 0.7;
  21. padding-top: 15px;
  22. }
  23.  
  24. button {
  25. display: inline-block;
  26. background-color: #B47965;
  27. font-size: 15px;
  28. color: white;
  29. width: 70px;
  30. height: 20px;
  31. vertical-align: center;
  32. border: solid 1px #B47965;
  33. box-shadow: 0 3px #999;
  34. border-radius: 15px;
  35. }
  36.  
  37. img {
  38. margin-top: -40px;
  39. }
  40.  
  41. button:hover {
  42. background-color: #b55d3e;
  43. }
  44.  
  45. button:active {
  46. background-color: #b55d3e;
  47. box-shadow: 0 1px #999;
  48. transform: translateY(2px);
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement