navbar-style.css 864 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. height: 130vh;
  10. }
  11. .nav-item {
  12. margin-bottom: 6px;
  13. font-size: 16px;
  14. line-height: 24px;
  15. }
  16. .arrow {
  17. margin: auto;
  18. color: #479FF8;
  19. }
  20. .rectangle-arrow {
  21. position: fixed;
  22. display: flex;
  23. top: 0;
  24. left: 0;
  25. width: 78px;
  26. height: 40px;
  27. align-items: center;
  28. vertical-align: middle;
  29. border-radius: 6px;
  30. border: 1px solid #D8D8D8;
  31. background: #FFF;
  32. box-shadow: 4px 5px 40px 0px #E5E5E5;
  33. margin-top: 24px;
  34. margin-left: 10px;
  35. justify-content: center;
  36. }
  37. .nav-item span {
  38. margin-left: 4px;
  39. }
  40. .nav-pills .nav-link {
  41. height: 48px;
  42. display: flex;
  43. }
  44. .link {
  45. margin-top: 4px;
  46. }