navbar.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. outline: none;
  24. opacity: 1;
  25. cursor: pointer;
  26. color: #333;
  27. }
  28. nav a.router-link-active {
  29. opacity: 1;
  30. font-family: ralewayBold;
  31. }
  32. nav a::after {
  33. position: absolute;
  34. top: 100%;
  35. left: 0;
  36. width: 100%;
  37. height: 1px;
  38. background: #4a4a4a;
  39. content: '';
  40. opacity: 0;
  41. -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  42. -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
  43. transition: height 0.3s, opacity 0.3s, transform 0.3s;
  44. -webkit-transform: translateY(-10px);
  45. -moz-transform: translateY(-10px);
  46. transform: translateY(-10px);
  47. }
  48. nav a:hover::after,
  49. nav a:focus::after,
  50. nav a.router-link-active::after {
  51. height: 2px;
  52. opacity: 1;
  53. -webkit-transform: translateY(0px);
  54. -moz-transform: translateY(0px);
  55. transform: translateY(0px);
  56. }