navbar.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. nav ul {
  2. list-style: none;
  3. }
  4. nav ul li {
  5. display: inline;
  6. }
  7. nav a {
  8. position: relative;
  9. display: inline-block;
  10. margin: 15px 25px;
  11. outline: none;
  12. color: #4a4a4a;
  13. text-decoration: none;
  14. text-transform: uppercase;
  15. letter-spacing: 1px;
  16. padding: 0 0 10px;
  17. font-size: 16px;
  18. opacity: 0.8;
  19. transition: opacity ease-in 0.2s;
  20. }
  21. nav a:hover,
  22. nav a:focus,
  23. nav a.selected {
  24. outline: none;
  25. opacity: 1;
  26. cursor: pointer;
  27. color: #333;
  28. font-family: ralewayBold;
  29. }
  30. nav a.router-link-active {
  31. opacity: 1;
  32. font-family: ralewayBold;
  33. }
  34. nav a::after {
  35. position: absolute;
  36. top: 100%;
  37. left: 0;
  38. width: 100%;
  39. height: 1px;
  40. background: #4a4a4a;
  41. content: '';
  42. opacity: 0;
  43. -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  44. -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
  45. transition: height 0.3s, opacity 0.3s, transform 0.3s;
  46. -webkit-transform: translateY(-10px);
  47. -moz-transform: translateY(-10px);
  48. transform: translateY(-10px);
  49. }
  50. nav a:hover::after,
  51. nav a:focus::after,
  52. nav a.router-link-active::after,
  53. nav a.selected::after {
  54. height: 2px;
  55. opacity: 1;
  56. -webkit-transform: translateY(0px);
  57. -moz-transform: translateY(0px);
  58. transform: translateY(0px);
  59. }