123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- /*========================================
- ORDERLIST PAGE STYLE
- =========================================*/
- .orderlist-filter {
- padding: 20px 25px;
- margin-bottom: 30px;
- border-radius: 8px;
- background: var(--white);
- border: 1px solid var(--border);
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- }
- .orderlist-filter h5 {
- text-transform: capitalize;
- }
- .filter-short {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- }
- .filter-short .form-label {
- font-size: 18px;
- margin: 0px 8px 0px 0px;
- color: var(--heading);
- }
- .filter-short .form-select {
- width: 150px;
- background: var(--chalk);
- }
- .orderlist {
- padding: 0px 30px;
- border-radius: 8px;
- margin-bottom: 30px;
- background: var(--white);
- border: 1px solid var(--border);
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .orderlist-head {
- padding: 25px 0px;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- cursor: pointer;
- }
- .orderlist-head h5 {
- color: var(--primary);
- text-transform: capitalize;
- }
- .orderlist-details {
- padding: 25px;
- border-radius: 8px;
- background: var(--chalk);
- margin-bottom: 25px;
- }
- .orderlist-details li {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: start;
- -ms-flex-align: start;
- align-items: flex-start;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- margin-bottom: 20px;
- }
- .orderlist-details li:last-child {
- margin-bottom: 0px;
- }
- .orderlist-details li h6 {
- line-height: 26px;
- white-space: nowrap;
- text-transform: capitalize;
- }
- .orderlist-details li h6 small {
- font-size: 14px;
- font-weight: 400;
- margin-left: 3px;
- }
- .orderlist-details li p {
- width: 250px;
- text-align: right;
- }
- .orderlist-deliver {
- height: 215px;
- padding: 25px;
- border-radius: 8px;
- margin-bottom: 25px;
- background: var(--chalk);
- }
- .orderlist-deliver h6 {
- margin-bottom: 15px;
- white-space: nowrap;
- text-transform: capitalize;
- }
- .orderlist-deliver p {
- text-transform: capitalize;
- }
- .table-list {
- overflow: hidden;
- border-radius: 8px;
- margin-bottom: 30px;
- background: var(--chalk);
- }
- .pricing_box1 {border:1px solid red; flex:0 0 100%; max-width:100%; }
- @media (max-width: 575px) {
- .orderlist-filter {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- }
- .orderlist-filter h5 {
- margin-bottom: 15px;
- }
- .orderlist {
- padding: 0px 15px;
- }
- .orderlist-head {
- padding: 15px 0px;
- }
- .orderlist-part .filter-short {width:auto;}
- }
|