Advertisement
erzis

Untitled

Nov 30th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. html, body {
  2. background-color: #D3D3D3;
  3. margin: 0;
  4. padding: 0;
  5. text-align: center;
  6. }
  7.  
  8. #menu_up {
  9. width: 1500px;
  10. height: 80px;
  11. text-align: left;
  12. background-image: url(../images/menu_up.jpg);
  13. margin-left: auto;
  14. margin-right: auto;
  15. margin-top: 10px;
  16. }
  17.  
  18. li {
  19. width:200px;
  20. text-align:center;
  21. float:left;
  22. margin-right:4px;
  23. list-style-type:none;
  24. font-size:35px;
  25. }
  26.  
  27. .button {
  28. background-color: #4CAF50; /* Green */
  29. border: none;
  30. color: white;
  31. padding: 10px 43px;
  32. text-align: center;
  33. text-decoration: none;
  34. display: inline-block;
  35. font-size: 16px;
  36. margin: -28px 2px;
  37. -webkit-transition-duration: 0.4s; /* Safari */
  38. transition-duration: 0.4s;
  39. cursor: pointer;
  40. }
  41.  
  42. .btn1 {
  43. background-color: white;
  44. color: black;
  45. border: 2px solid #4CAF50;
  46. }
  47.  
  48. .btn1:hover {
  49. background-color: #4CAF50;
  50. color: white;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement