themeStyle.sass 1017 B

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