navbar-style.css 881 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
  2. * {
  3. font-family: 'Open Sans', sans-serif;
  4. margin: 0;
  5. padding: 0;
  6. box-sizing: border-box;
  7. }
  8. body {
  9. margin: 0;
  10. height: 130vh;
  11. }
  12. .nav-item {
  13. margin-bottom: 6px;
  14. font-size: 16px;
  15. line-height: 24px;
  16. }
  17. .arrow {
  18. margin: auto;
  19. color: #479FF8;
  20. }
  21. .rectangle-arrow {
  22. position: fixed;
  23. display: flex;
  24. top: 0;
  25. left: 0;
  26. width: 78px;
  27. height: 40px;
  28. align-items: center;
  29. vertical-align: middle;
  30. border-radius: 6px;
  31. border: 1px solid #D8D8D8;
  32. background: #FFF;
  33. box-shadow: 4px 5px 40px 0px #E5E5E5;
  34. margin-top: 24px;
  35. margin-left: 10px;
  36. justify-content: center;
  37. }
  38. .nav-item span {
  39. margin-left: 4px;
  40. }
  41. .nav-pills .nav-link {
  42. height: 48px;
  43. display: flex;
  44. }
  45. .link {
  46. margin-top: 4px;
  47. }