style.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
  2. html,body{
  3. height: 100%;
  4. }
  5. body {
  6. font-family: 'Poppins', sans-serif;
  7. color: black;
  8. }
  9. p {
  10. font-size: 12px;
  11. }
  12. .btn-primary {
  13. background: rgb(237,31,37);
  14. background: linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  15. border-radius: 20px;
  16. border: none;
  17. padding-left: 30px !important;
  18. padding-right: 30px !important;
  19. color: white;
  20. }
  21. .main-heading {
  22. font-size: 60px;
  23. font-weight: 700;
  24. }
  25. .bg-header {
  26. color: white;
  27. background-image: url(../imgs/header-bg.png);
  28. background-repeat: no-repeat;
  29. background-size: 100% auto;
  30. }
  31. .btn-gradient {
  32. background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  33. color: white;
  34. border-radius: 30px;
  35. border: none;
  36. font-size: 30px;
  37. padding-left: 80px !important;
  38. padding-right: 80px !important;
  39. font-weight: 700;
  40. padding: 10px;
  41. }
  42. .text-primary {
  43. background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  44. -webkit-background-clip: text;
  45. -webkit-text-fill-color: transparent;
  46. }
  47. section {
  48. padding-top: 5rem;
  49. padding-bottom: 5rem;
  50. }
  51. .section-bg {
  52. background-image: url(../imgs/section-bg.png);
  53. background-repeat: no-repeat;
  54. }
  55. .bg-danger {
  56. background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  57. color: white;
  58. }
  59. .container {
  60. max-width: 70%;
  61. }
  62. .gold {
  63. background-color: #fff6e5;
  64. border: 1px solid #FF9D00;
  65. }
  66. .silver {
  67. background-color: #e4e4e4;
  68. border: 1px solid #a4b8b8;
  69. }
  70. .platnium {
  71. background-color: #ffdbcb;
  72. border: 1px solid #f57020;
  73. }
  74. tr {
  75. border: 1px solid #DFDFDF;
  76. }
  77. header {
  78. padding-top: 9.5rem;
  79. padding-bottom: 1rem;
  80. }
  81. .header-right{
  82. display: flex;
  83. align-items: center;
  84. }
  85. .signin{
  86. display: block;
  87. width: 150px;
  88. height: 45px;
  89. line-height: 45px;
  90. text-align: center;
  91. background: -webkit-linear-gradient(0deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
  92. border-radius: 6px;
  93. font-size: 16px;
  94. font-weight: bold;
  95. text-decoration: none;
  96. margin-left: 20px;
  97. }
  98. .language-box{
  99. display: block;
  100. width: 150px;
  101. height: 45px;
  102. line-height: 45px;
  103. text-align: center;
  104. border: 1px solid #fff;
  105. border-radius: 6px;
  106. font-size: 16px;
  107. font-weight: bold;
  108. text-decoration: none;
  109. color: #ffffff;
  110. }
  111. .el-pagination.is-background .el-pager li:not(.disabled):hover {
  112. color: #ED2025 !important;
  113. }
  114. .el-pagination.is-background .el-pager li:not(.disabled).active {
  115. background-color: #fff !important;
  116. color: #ED2025 !important;
  117. border: 1px solid #ED2025 !important;
  118. }
  119. .el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev, .el-pagination.is-background .el-pager li {
  120. background-color: #fff !important;
  121. color: #333 !important;
  122. border: 1px solid #DFE3E8;
  123. }
  124. #active1{
  125. min-height: 100%;
  126. }
  127. .crm_pagination{
  128. text-align: center;
  129. margin-top: 10px;
  130. }
  131. .scroll-table{
  132. overflow-x: scroll;
  133. }
  134. .scroll-table::-webkit-scrollbar {
  135. display: none;
  136. }
  137. .notData{
  138. color: #333;
  139. margin-bottom: 15px;
  140. }
  141. @media screen and (max-width: 768px) {
  142. .bg-header{
  143. background-size: auto;
  144. }
  145. .fixed-top{
  146. background-color: #350876;
  147. }
  148. .container {
  149. max-width: 95%;
  150. }
  151. .navbar > .container, .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
  152. display: flex;
  153. flex-wrap: inherit;
  154. align-items: center;
  155. justify-content: center;
  156. }
  157. .main-heading {
  158. font-size: 26px;
  159. font-weight: 700;
  160. }
  161. .text-primary {
  162. font-size: 22px;
  163. }
  164. .text-black {
  165. font-size: 14px;
  166. }
  167. .justify-content-between {
  168. justify-content: center !important;
  169. }
  170. .img-fluid {
  171. max-width: 20px;
  172. }
  173. }