navbar-style.css 836 B

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