themeStyle.css 893 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@300;400;500;600;700;800;900&display=swap");
  2. * {
  3. list-style: none;
  4. text-decoration: none;
  5. }
  6. body {
  7. height: 200vh;
  8. }
  9. #navbar {
  10. position: sticky;
  11. top: 0;
  12. background: aliceblue;
  13. padding: 0.75rem 0;
  14. }
  15. #navbar .container {
  16. display: flex;
  17. justify-content: space-between;
  18. align-items: center;
  19. }
  20. #navbar .nav-links {
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. gap: 0.75rem;
  25. }
  26. #navbar .nav-links li {
  27. margin: unset;
  28. padding: unset;
  29. }
  30. #navbar .link-item {
  31. padding: 0.25rem 0.75rem;
  32. margin: unset;
  33. color: #000;
  34. font-weight: 600;
  35. background: #fff;
  36. }
  37. #navbar .login-registar {
  38. display: flex;
  39. justify-content: center;
  40. align-items: center;
  41. gap: 0.25rem;
  42. font-family: "Noto Serif Bengali", serif;
  43. font-weight: 600;
  44. }/*# sourceMappingURL=themeStyle.css.map */