Advertisement
Guest User

Untitled

a guest
Nov 21st, 2015
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. /* unvisited link */
  2. a:link {
  3. color: #E8D300;
  4. }
  5.  
  6. /* visited link */
  7. a:visited {
  8. color: #E8D300;
  9. }
  10.  
  11. /* mouse over link */
  12. a:hover {
  13. color: green;
  14. }
  15.  
  16. /* selected link */
  17. a:active {
  18. color: #E8D300;
  19. }
  20.  
  21. ------------------------------------------
  22. #navcontainer ul
  23. {
  24. margin: 0;
  25. padding: 0;
  26. list-style-type: none;
  27. }
  28.  
  29. #navcontainer ul li { display: inline; }
  30.  
  31. #navcontainer ul li a
  32. {
  33. text-decoration: none;
  34. padding: .2em 1em;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement