Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. body {
  2. font-family: "Trebuchet MS", Verdana, sans-serif;
  3. font-size: 16px;
  4. background-color: dimgrey;
  5. color: #696969;
  6. padding: 3px;
  7. }
  8.  
  9. #main {
  10. padding: 5px;
  11. padding-left: 15px;
  12. padding-right: 15px;
  13. background-color: #ffffff;
  14. border-radius: 0 0 5px 5px;
  15. }
  16.  
  17. h1 {
  18. font-family: Georgia, serif;
  19. border-bottom: 3px solid #cc9900;
  20. color: #996600;
  21. font-size: 30px;
  22. }
  23.  
  24.  
  25. table {
  26. width:100%;
  27. }
  28.  
  29. table, th , td {
  30. border: 1px solid grey;
  31. border-collapse: collapse;
  32. padding: 5px;
  33. }
  34.  
  35. th {
  36. text-align: left;
  37. }
  38.  
  39. table tr:nth-child(odd) {
  40. background-color: #f1f1f1;
  41. }
  42. table tr:nth-child(even) {
  43. background-color: #ffffff;
  44. }
  45.  
  46. ul#menu {
  47. padding: 0;
  48. margin-bottom: 11px;
  49. }
  50. ul#menu li {
  51. display: inline;
  52. margin-right: 3px;
  53. }
  54. ul#menu li a {
  55. background-color: #ffffff;
  56. padding: 10px 20px;
  57. text-decoration: none;
  58. color: #696969;
  59. border-radius: 4px 4px 0 0;
  60. }
  61. ul#menu li a:hover {
  62. color: white;
  63. background-color: black;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement