Advertisement
GertMoey

Untitled

Oct 2nd, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. /*---------------------*/
  2. /* GENERAL ELEMENTS */
  3. /*---------------------*/
  4. body{
  5. font-family: "Verdana", "Arial", "Helvetica", sans-serif;
  6. }
  7.  
  8. /*---------------------*/
  9. /* GENERAL CLASSES */
  10. /*---------------------*/
  11. .programma {
  12. background-color: #000000;
  13. background-image: url(assets/media/programma.gif);
  14. background-position: right bottom ;
  15. background-repeat: no-repeat;
  16. }
  17. .programma:hover {
  18. background-color: #000000;
  19. background-image: url(assets/media/programma-over.gif);
  20. background-position: right bottom;
  21. background-repeat: no-repeat;
  22. }
  23. .tickets {
  24. background-color: #000000;
  25. background-image: url(assets/media/tickets.gif);
  26. background-position: right bottom;
  27. background-repeat: no-repeat;
  28. }
  29. .tickets:hover {
  30. background-color: #000000;
  31. background-image: url(assets/media/tickets-over.gif);
  32. background-position: right bottom;
  33. background-repeat: no-repeat;
  34. }
  35. .camping {
  36. background-color: #000000;
  37. background-image: url(assets/media/camping.gif);
  38. background-position: right bottom;
  39. background-repeat: no-repeat;
  40. }
  41. .camping:hover {
  42. background-color: #000000;
  43. background-image: url(assets/media/camping-over.gif);
  44. background-position: right bottom;
  45. background-repeat: no-repeat;
  46. }
  47. .nieuws {
  48. background-color: #000000;
  49. background-image: url(assets/media/nieuws.gif);
  50. background-position: right bottom;
  51. background-repeat: no-repeat;
  52. }
  53. .nieuws:hover {
  54. background-color: #000000;
  55. background-image: url(assets/media/nieuws-over.gif);
  56. background-position: right bottom;
  57. background-repeat: no-repeat;
  58. }
  59. /*---------------------*/
  60. /* CONTAINING ELEMENTS */
  61. /*---------------------*/
  62.  
  63.  
  64. /*------------------------*/
  65. /* PAGE SPECIFIC ELEMENTS */
  66. /*------------------------*/
  67. h1{
  68. font-size: 2rem;
  69. font-weight: bold;
  70. margin-bottom: 20px;
  71. }
  72. nav{
  73. width: 200px;
  74. margin-left: 150px;
  75. }
  76. li
  77. {
  78. text-transform: uppercase;
  79. display: block;
  80. }
  81. li ul{
  82. display: none;
  83. }
  84. li:hover ul{
  85. display: block;
  86. }
  87. a {
  88. display: block;
  89. color: #ffffff;
  90. padding: 5px;
  91. line-height: 300%;
  92. margin-bottom: 5px;
  93. text-decoration: none;
  94. font-size: 1rem;
  95. font-weight: bold;
  96. }
  97. ul li ul li a{
  98. background-color: #db0120
  99. }
  100. /* --- Homepage --- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement