navbar-style.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. .footer-item {
  17. margin-top: 4px;
  18. font-size: 14px;
  19. color: #3F3F3F;
  20. font-weight: 400;
  21. }
  22. .footer-color{
  23. color: #479FF8;
  24. }
  25. .footer-link a{
  26. text-decoration: none;
  27. }
  28. .arrow {
  29. margin: auto;
  30. color: #479FF8;
  31. }
  32. .rectangle-arrow {
  33. position: fixed;
  34. display: flex;
  35. top: 0;
  36. left: 0;
  37. width: 78px;
  38. height: 40px;
  39. align-items: center;
  40. vertical-align: middle;
  41. border-radius: 6px;
  42. border: 1px solid #D8D8D8;
  43. background: #FFF;
  44. box-shadow: 4px 5px 40px 0px #E5E5E5;
  45. margin-top: 24px;
  46. margin-left: 10px;
  47. justify-content: center;
  48. }
  49. .nav-item span {
  50. margin-left: 4px;
  51. }
  52. .nav-pills .nav-link {
  53. height: 48px;
  54. display: flex;
  55. }
  56. .link {
  57. margin-top: 4px;
  58. }