You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

50 lines
1.1 KiB

  1. /**
  2. * This file provides the design styles for the direct / menu jump links.
  3. */
  4. .nav-direct {
  5. background-color: @nav_direct_background;
  6. margin-top: -1px;
  7. p {
  8. box-sizing: border-box;
  9. text-align: center;
  10. position: absolute;
  11. left: 0;
  12. top: -1px;
  13. width: 100%;
  14. height: 1px;
  15. a:link,
  16. a:visited {
  17. .sr-out();
  18. box-shadow: @box-shadow;
  19. display: block;
  20. width: 100%;
  21. background-color: @nav_direct_background;
  22. border-bottom: 1px solid @ini_border_light;
  23. color: @nav_direct_color;
  24. line-height: @line-height-default;
  25. text-decoration: none;
  26. padding: 1em;
  27. box-sizing: border-box;
  28. border-radius: 0;
  29. }
  30. a:focus,
  31. a:hover,
  32. a:active {
  33. top: 0;
  34. left: 0;
  35. text-decoration: underline;
  36. min-height: 50px;
  37. }
  38. a:hover,
  39. a:active {
  40. text-decoration: none;
  41. }
  42. }
  43. }