themeStyle.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
  2. @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@300;400;500;600;700;800;900&display=swap");
  3. @import url("https://fonts.googleapis.com/css2?family=Tiro+Bangla&display=swap");
  4. * {
  5. list-style: none;
  6. text-decoration: none;
  7. }
  8. a {
  9. opacity: 1;
  10. }
  11. body {
  12. background: rgb(255, 255, 255);
  13. color: rgb(0, 0, 0);
  14. font-family: "Tiro Bangla", serif;
  15. }
  16. main {
  17. height: 200vh;
  18. padding-top: 4rem;
  19. }
  20. section {
  21. padding: 4rem 0;
  22. margin: unset;
  23. }
  24. h1, h2, h3, h4, h5, h6, p {
  25. color: inherit;
  26. font-family: inherit;
  27. margin: unset;
  28. }
  29. .section-title {
  30. font-weight: 600;
  31. color: rgb(0, 0, 0);
  32. text-align: center;
  33. margin-bottom: 1.2rem;
  34. }
  35. .section-sub-title {
  36. color: rgba(0, 0, 0, 0.6);
  37. text-align: center;
  38. font-size: 1.1rem;
  39. margin-bottom: 2rem;
  40. }
  41. .img-container {
  42. overflow: hidden;
  43. }
  44. .img-container img {
  45. height: 100%;
  46. width: 100%;
  47. -o-object-fit: cover;
  48. object-fit: cover;
  49. -o-object-position: center;
  50. object-position: center;
  51. }
  52. .link-btn {
  53. margin: 0 !important;
  54. padding: 0.25rem 1rem !important;
  55. background: rgb(0, 38, 136);
  56. border-color: rgb(0, 38, 136);
  57. border-width: 2px;
  58. font-size: 0.9rem;
  59. font-weight: 600;
  60. box-shadow: none;
  61. opacity: unset;
  62. display: block;
  63. height: unset;
  64. }
  65. .link-btn:hover {
  66. background: rgb(255, 255, 255);
  67. color: rgb(0, 38, 136);
  68. }
  69. .link-btn-outline {
  70. margin: 0 !important;
  71. padding: 0.25rem 1rem !important;
  72. color: rgb(0, 38, 136);
  73. border-color: rgb(0, 38, 136);
  74. background: rgb(255, 255, 255);
  75. border-width: 2px;
  76. font-size: 0.9rem;
  77. font-weight: 600;
  78. box-shadow: none;
  79. opacity: unset;
  80. height: unset;
  81. }
  82. .link-btn-outline:hover {
  83. background: rgb(0, 38, 136);
  84. color: rgb(255, 255, 255);
  85. }
  86. #navbar {
  87. position: fixed;
  88. top: 0;
  89. left: 0;
  90. width: 100%;
  91. padding: 0.75rem 0;
  92. font-family: "Poppins", sans-serif;
  93. background: rgb(255, 255, 255);
  94. }
  95. #navbar .container-fluid {
  96. display: flex;
  97. justify-content: space-between;
  98. align-items: center;
  99. }
  100. @media screen and (max-width: 768px) {
  101. #navbar .container-fluid {
  102. flex-direction: column;
  103. }
  104. }
  105. #navbar .nav-icons {
  106. display: flex;
  107. align-items: center;
  108. }
  109. @media screen and (max-width: 768px) {
  110. #navbar .nav-icons {
  111. position: fixed;
  112. top: 0;
  113. left: 0;
  114. right: 0;
  115. justify-content: space-between;
  116. width: 100%;
  117. padding: 0 1rem;
  118. background: rgb(255, 255, 255);
  119. height: 4rem;
  120. }
  121. }
  122. #navbar .navbar-brand {
  123. height: 3.5rem;
  124. }
  125. #navbar .navbar-brand img {
  126. height: 100%;
  127. }
  128. #navbar .res-btn {
  129. font-size: 1.2rem;
  130. padding: 0.25rem;
  131. background: unset;
  132. color: rgb(0, 0, 0);
  133. border: none;
  134. margin: 0;
  135. width: unset;
  136. height: -moz-fit-content;
  137. height: fit-content;
  138. width: -moz-fit-content;
  139. width: fit-content;
  140. display: none;
  141. }
  142. #navbar .res-btn:focus {
  143. box-shadow: none;
  144. }
  145. @media screen and (max-width: 768px) {
  146. #navbar .res-btn {
  147. display: block;
  148. }
  149. }
  150. #navbar .nav-links {
  151. display: flex;
  152. justify-content: center;
  153. align-items: center;
  154. gap: 1rem;
  155. }
  156. @media screen and (max-width: 768px) {
  157. #navbar .nav-links {
  158. background: rgb(255, 255, 255);
  159. display: block;
  160. position: fixed;
  161. top: 4rem;
  162. left: 0;
  163. right: 0;
  164. min-height: calc(100vh - 4rem);
  165. padding: 1rem;
  166. overflow-y: auto;
  167. transform: translateX(-200vw);
  168. transition: 0.75s;
  169. }
  170. #navbar .nav-links li {
  171. display: block;
  172. color: #fff;
  173. margin-top: 1rem !important;
  174. }
  175. }
  176. #navbar .nav-links li {
  177. margin: unset;
  178. padding: unset;
  179. }
  180. #navbar .link-item {
  181. padding: 0.25rem 0.5rem;
  182. margin: unset;
  183. color: rgba(0, 0, 0, 0.8);
  184. font-size: 0.9rem;
  185. font-weight: 600;
  186. background: transparent;
  187. }
  188. #navbar .link-item:hover {
  189. color: rgb(0, 38, 136);
  190. }
  191. #navbar .link-item.active {
  192. color: rgb(0, 38, 136);
  193. }
  194. @media screen and (max-width: 768px) {
  195. body.show-mobile-menu #navbar .nav-links {
  196. transform: translateX(0px);
  197. }
  198. body.show-mobile-menu main {
  199. overflow-y: none;
  200. }
  201. }/*# sourceMappingURL=themeStyle.css.map */