| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
- html,body{
- height: 100%;
- }
- body {
- font-family: 'Poppins', sans-serif;
- color: black;
- }
- p {
- font-size: 12px;
- }
- .btn-primary {
- background: rgb(237,31,37);
- background: linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
- border-radius: 20px;
- border: none;
- padding-left: 30px !important;
- padding-right: 30px !important;
- color: white;
- }
- .main-heading {
- font-size: 60px;
- font-weight: 700;
- }
- .bg-header {
- color: white;
- background-image: url(../imgs/header-bg.png);
- background-repeat: no-repeat;
- background-size: 100% auto;
- }
- .btn-gradient {
- background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
- color: white;
- border-radius: 30px;
- border: none;
- font-size: 30px;
- padding-left: 80px !important;
- padding-right: 80px !important;
- font-weight: 700;
- padding: 10px;
- }
- .text-primary {
- background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- section {
- padding-top: 5rem;
- padding-bottom: 5rem;
- }
- .section-bg {
- background-image: url(../imgs/section-bg.png);
- background-repeat: no-repeat;
- }
- .bg-danger {
- background: -webkit-linear-gradient(90deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
- color: white;
- }
- .container {
- max-width: 70%;
- }
- .gold {
- background-color: #fff6e5;
- border: 1px solid #FF9D00;
- }
- .silver {
- background-color: #e4e4e4;
- border: 1px solid #a4b8b8;
- }
- .platnium {
- background-color: #ffdbcb;
- border: 1px solid #f57020;
- }
- tr {
- border: 1px solid #DFDFDF;
- }
- header {
- padding-top: 9.5rem;
- padding-bottom: 1rem;
- }
- .header-right{
- display: flex;
- align-items: center;
- }
- .signin{
- display: block;
- width: 150px;
- height: 45px;
- line-height: 45px;
- text-align: center;
- background: -webkit-linear-gradient(0deg, rgba(237,31,37,1) 0%, rgba(254,89,36,1) 100%);
- border-radius: 6px;
- font-size: 16px;
- font-weight: bold;
- text-decoration: none;
- margin-left: 20px;
- }
- .language-box{
- display: block;
- width: 150px;
- height: 45px;
- line-height: 45px;
- text-align: center;
- border: 1px solid #fff;
- border-radius: 6px;
- font-size: 16px;
- font-weight: bold;
- text-decoration: none;
- color: #ffffff;
- }
- .el-pagination.is-background .el-pager li:not(.disabled):hover {
- color: #ED2025 !important;
- }
- .el-pagination.is-background .el-pager li:not(.disabled).active {
- background-color: #fff !important;
- color: #ED2025 !important;
- border: 1px solid #ED2025 !important;
- }
- .el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev, .el-pagination.is-background .el-pager li {
- background-color: #fff !important;
- color: #333 !important;
- border: 1px solid #DFE3E8;
- }
- #active1{
- min-height: 100%;
- }
- .crm_pagination{
- text-align: center;
- margin-top: 10px;
- }
- .scroll-table{
- overflow-x: scroll;
- }
- .scroll-table::-webkit-scrollbar {
- display: none;
- }
- .notData{
- color: #333;
- margin-bottom: 15px;
- }
- @media screen and (max-width: 768px) {
- .bg-header{
- background-size: auto;
- }
- .fixed-top{
- background-color: #350876;
- }
- .container {
- max-width: 95%;
- }
- .navbar > .container, .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
- display: flex;
- flex-wrap: inherit;
- align-items: center;
- justify-content: center;
- }
- .main-heading {
- font-size: 26px;
- font-weight: 700;
- }
- .text-primary {
- font-size: 22px;
- }
- .text-black {
- font-size: 14px;
- }
- .justify-content-between {
- justify-content: center !important;
- }
- .img-fluid {
- max-width: 20px;
- }
- }
|