From f5a468393adc09123491c75aeff561e5610c6847 Mon Sep 17 00:00:00 2001 From: Roman Pyrih Date: Fri, 1 Aug 2025 14:32:59 +0200 Subject: [PATCH] Respo --- layout/images/shopping-basket.svg | 3 + layout/style-css/style.css | 2 +- layout/style-css/style.css.map | 2 +- layout/style-scss/.htaccess | 9 ++ layout/style-scss/style.scss | 228 +++++++++++++++++++++++++++- templates/tickets/basket-form.php | 10 +- templates/tickets/basket-view.php | 10 +- templates/tickets/main-view.php | 51 ++++++- templates/tickets/shopping-cart.php | 21 ++- 9 files changed, 307 insertions(+), 29 deletions(-) create mode 100644 layout/images/shopping-basket.svg create mode 100644 layout/style-scss/.htaccess diff --git a/layout/images/shopping-basket.svg b/layout/images/shopping-basket.svg new file mode 100644 index 0000000..7635bc1 --- /dev/null +++ b/layout/images/shopping-basket.svg @@ -0,0 +1,3 @@ + + + diff --git a/layout/style-css/style.css b/layout/style-css/style.css index 466761b..274ac27 100644 --- a/layout/style-css/style.css +++ b/layout/style-css/style.css @@ -1 +1 @@ -@import"https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,300;1,400;1,700&display=swap";*{margin:0;padding:0;box-sizing:border-box}body{color:#333;font-family:"Lato",sans-serif;background-color:#f3f0cf;display:flex;flex-direction:column;min-height:100vh}.btn-t1{border:none;background-color:rgba(0,0,0,0);color:#333;padding:10px 30px;border-radius:10px;font-weight:800;background-color:#a4e653;text-decoration:none}.btn-t1:disabled{background-color:rgba(149,165,166,.5);cursor:not-allowed}.btn-t2{border:none;background-color:rgba(0,0,0,0);color:#fff;padding:10px 30px;border-radius:10px;font-weight:800;background-color:#333;text-decoration:none}.btn-t2:disabled{background-color:rgba(149,165,166,.5);cursor:not-allowed}.btn{padding:9px 30px}.flex-buttons-group{display:flex;justify-content:center;align-items:center;gap:5px}.c_green{color:#72b81b}.c_red{color:#e31e4b}.top{position:relative;background:#72b81b;color:#fff;height:70px}.top .a_menu .logo{position:absolute;margin:10px 0 !important}.top .a_menu #nav-menu.active{display:block;right:0;top:0;left:0;bottom:0;height:100vh;background:#fff;z-index:999}.top .a_menu #menu-hamburger{position:relative;height:70px;display:flex;align-items:center;justify-content:flex-end;z-index:9999}.top .a_menu #menu-hamburger i{font-size:28px}.top .a_menu #menu-hamburger.active #btn-hamburger{position:relative;height:30px;width:30px}.top .a_menu #menu-hamburger.active #btn-hamburger span{position:absolute;width:100%;height:2px;background:#333;border-radius:5px;top:50%;transform:translateY(-50%)}.top .a_menu #menu-hamburger.active #btn-hamburger span:nth-child(1){top:50%;transform:rotate(45deg) translateY(-50%)}.top .a_menu #menu-hamburger.active #btn-hamburger span:nth-child(2){transform:translateX(-100%) translateY(-50%)}.top .a_menu #menu-hamburger.active #btn-hamburger span:nth-child(3){top:50%;transform:rotate(-45deg) translateY(-50%)}.top .a_menu #menu-hamburger #btn-hamburger{position:relative;height:30px;width:30px;overflow:hidden}.top .a_menu #menu-hamburger #btn-hamburger span{position:absolute;width:100%;height:2px;background:#fff;border-radius:5px;top:50%;transform:translateY(-50%);transition:all 250ms ease}.top .a_menu #menu-hamburger #btn-hamburger span:nth-child(1){top:20%}.top .a_menu #menu-hamburger #btn-hamburger span:nth-child(3){top:80%}@media(min-width: 768px){.top .a_menu #menu-hamburger{display:none}}@media(max-width: 767px){.top .a_menu #nav-menu{position:fixed;display:none}.top .a_menu #nav-menu ul{width:100%;max-width:300px;padding:0 15px;margin:0 auto;flex-direction:column;justify-content:center}.top .a_menu #nav-menu ul li a{color:#333}}.top .logo{background:#72b81b;display:block;margin:0 auto 10px;width:150px;border-radius:0 0 50% 50%;padding:10px 25px 25px}.top .logo img{width:100%}@media(max-width: 600px){.top .logo{margin:10px 0}}.top nav{height:70px}.top nav ul{height:100%;display:flex;flex-direction:row;align-items:center;justify-content:flex-end;gap:25px;list-style:none;margin:0;padding:0}.top nav ul li a{color:#fff;font-size:18px;font-weight:600;text-decoration:none}.main{display:flex;flex-direction:column;flex-grow:1}.main .tickets{margin-top:100px;margin-bottom:50px;display:flex;flex-direction:column;width:100%;gap:80px}.main .tickets .ticket-container{display:flex;flex-direction:column;width:100%;gap:40px;align-items:center}.main .tickets .ticket-container .title-container{text-align:center;position:relative}.main .tickets .ticket-container .title-container::after{content:"";position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:100px;border-bottom:2px dotted #000}.main .tickets .ticket-container .title-container .title{font-weight:800;font-size:46px}.main .tickets .ticket-container .title-container .description{font-size:28px}.main .tickets .ticket{display:flex;flex-direction:row;align-items:center}.main .tickets .ticket .ticket-description{display:flex;flex-direction:column;align-items:center;justify-content:center;width:500px;text-align:center;color:#fff;border-radius:10px;padding:20px 0}.main .tickets .ticket .ticket-description--yellow{background-color:#ffc937}.main .tickets .ticket .ticket-description--red{background-color:#e31e4b}.main .tickets .ticket .ticket-description--blue{background-color:#138fcb}.main .tickets .ticket .ticket-description--orange{background-color:#eb5024}.main .tickets .ticket .ticket-description--green{background-color:#72b81b}.main .tickets .ticket .ticket-description--violet{background-color:#8900be}.main .tickets .ticket .ticket-description .ticket__name{font-size:46px;font-weight:800}.main .tickets .ticket .ticket-description .description{font-size:13px;font-style:italic;line-height:.75;margin-bottom:0}.main .tickets .ticket .ticket-description .ticket-alert{font-size:20px;margin:20px 0 0 0;font-weight:800;text-transform:uppercase;text-decoration:underline}.main .tickets .ticket .price{font-size:46px;margin-left:40px;font-weight:800;min-width:138px}.main .tickets .ticket .ticket-quantity{margin-left:30px}.main .tickets .ticket .ticket-quantity .button{width:30px;height:30px;border-radius:50%;border:1px solid #333;color:#333;background-color:rgba(0,0,0,0);text-align:center}.main .tickets .ticket .ticket-quantity span{padding:0 5px}.main .bottom-info__description{text-align:center;font-size:16px;line-height:29px;padding:20px 0;position:relative}.main .bottom-info__description::after,.main .bottom-info__description::before{position:absolute;content:"";border-bottom:2px dotted #333;left:50%;transform:translateX(-50%);width:10%}.main .bottom-info__description::after{top:0}.main .bottom-info__description::before{bottom:0}.main .bottom-info__description p:nth-child(2){margin-bottom:0}.main .bottom-info__background{margin-top:40px;background-image:url("https://brzezovka.pl/css/../img/bgcity.png");background-position:bottom center;background-repeat:repeat-x;width:100%;height:300px}.footer{background-color:#34327c;display:flex;flex-direction:column;width:100%;color:#fff}.footer a{text-decoration:none;color:#eb5024}.footer .footer__top{display:grid;grid-template-columns:1fr 1fr 1fr;grid-template-rows:1fr;justify-items:center;align-items:center}.footer .footer__top .location{padding:20px 0;text-align:center}.footer .footer__top .location .title{font-size:22px;font-weight:800}.footer .footer__top .logo{height:100px}.footer .footer__top .logo img{width:100%;height:100%}.footer .footer__bottom{width:100%}.footer .footer__bottom p{text-align:center;margin:0;padding:30px 0}@media(max-width: 767px){.footer .footer__top{padding-top:30px;grid-template-columns:1fr}.footer .footer__top .opening-hours{grid-row-start:2}.footer .footer__top .logo{grid-row-start:1}.footer .footer__top .location{grid-row-start:3}}.shopping-cart{opacity:0;position:fixed;top:80px;right:10px;display:flex;flex-direction:column;justify-content:center;align-items:center;border-radius:10px;background-color:#72b81b;color:#fff;gap:20px;width:230px;padding:20px 0;transition:opacity .2s}.shopping-cart--active{opacity:1}.shopping-cart .basket{font-size:30px}.shopping-cart .quantity{font-size:18px;font-weight:800}.shopping-cart .tickets__list{width:100%;list-style:none;padding:0 5px;background-color:#fff;color:#333;border-right:1px solid #333;border-left:1px solid #333}.shopping-cart .tickets__list p{margin-bottom:0}.shopping-cart .tickets__list .ticket{border:1px solid #333;border-radius:5px;margin:5px 0;padding:5px 0 5px 5px;display:grid;grid-template-columns:1fr 20px;grid-template-rows:1fr 1fr;grid-template-areas:"name btn" "price btn";font-size:12px;align-items:center}.shopping-cart .tickets__list .ticket__description{grid-area:name;font-weight:800;font-size:13px}.shopping-cart .tickets__list .ticket__price{grid-area:price;font-weight:800;font-size:13px}.shopping-cart .tickets__list .ticket__price span{font-weight:400}.shopping-cart .tickets__list .ticket .ticket__button{grid-area:btn;border:none;background-color:rgba(0,0,0,0);color:#333;font-size:14px;font-weight:800}.shopping-cart .sum-section{text-align:center;font-weight:800;font-size:18px}.shopping-cart .sum-section p{margin-bottom:0}.shopping-cart .off-btn{border:none;background-color:rgba(0,0,0,0);color:#fff;font-size:18px;font-weight:800;position:absolute;top:5px;right:15px}.shopping-cart .buy-btn{border:none;background-color:rgba(0,0,0,0);color:#333;padding:10px 30px;border-radius:10px;font-weight:800;background-color:#a4e653;text-decoration:none}#basket_page .basket_content{margin-top:100px;margin-bottom:100px}#basket_page .box_01{margin-bottom:24px}#basket_page .box_01 table{width:100%;background:#fff}#basket_page .box_01 table tr{text-align:center;border-top:1px solid rgba(0,0,0,.1)}#basket_page .box_01 table tr th{padding:8px}#basket_page .box_01 table tr th h3{font-size:1.25rem;font-weight:800}#basket_page .box_01 table tr td{padding:8px}#basket_page .box_01 table tr td .btn_t1{width:30px;height:30px;border-radius:50%;border:none;transition:150ms ease-in-out}#basket_page .box_01 table tr td .btn_t1.add:hover{color:#72b81b;border-color:#72b81b}#basket_page .box_01 table tr td .btn_t1.subtract:hover{color:#eb5024;border-color:#eb5024}#basket_page .box_01 table tr td .btn_t1.delete{border:none}#basket_page .box_01 table tr td .btn_t1.delete:hover{color:#e31e4b}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper{background:#fff;padding:30px}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper h2{font-size:1.5rem;margin-bottom:20px}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper .form-vat-box{display:none}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper .form-group .col-form-label{font-weight:600}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper .form-group .col-form-label .form-vat-option{opacity:0;transition:400ms ease}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper .form-group .form-check a{color:#72b81b;text-decoration:none}#basket_page .box_02 .basket_summary .basket_summary__wrapper{text-align:center;background:#fff;padding:30px;height:100%}#basket_page .box_02 .basket_summary .basket_summary__wrapper h2{font-size:1.5rem}#basket_page .box_02 .basket_summary .basket_summary__wrapper p{font-size:1.5rem;font-weight:800}#basket_page .box_02 .basket_summary .basket_summary__wrapper .buy-btn{display:inline-block;border:none;background-color:rgba(0,0,0,0);color:#333;padding:10px 30px;border-radius:10px;font-weight:800;background-color:#d3f3ac;text-decoration:none}.spinner_container{display:flex;align-items:center;justify-content:center;padding:150px 0}.lds-roller{display:inline-block;position:relative;width:80px;height:80px}.lds-roller div{animation:lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;transform-origin:40px 40px}.lds-roller div:after{content:" ";display:block;position:absolute;width:7px;height:7px;border-radius:50%;background:#72b81b;margin:-4px 0 0 -4px}.lds-roller div:nth-child(1){animation-delay:-0.036s}.lds-roller div:nth-child(1):after{top:63px;left:63px}.lds-roller div:nth-child(2){animation-delay:-0.072s}.lds-roller div:nth-child(2):after{top:68px;left:56px}.lds-roller div:nth-child(3){animation-delay:-0.108s}.lds-roller div:nth-child(3):after{top:71px;left:48px}.lds-roller div:nth-child(4){animation-delay:-0.144s}.lds-roller div:nth-child(4):after{top:72px;left:40px}.lds-roller div:nth-child(5){animation-delay:-0.18s}.lds-roller div:nth-child(5):after{top:71px;left:32px}.lds-roller div:nth-child(6){animation-delay:-0.216s}.lds-roller div:nth-child(6):after{top:68px;left:24px}.lds-roller div:nth-child(7){animation-delay:-0.252s}.lds-roller div:nth-child(7):after{top:63px;left:17px}.lds-roller div:nth-child(8){animation-delay:-0.288s}.lds-roller div:nth-child(8):after{top:56px;left:12px}@keyframes lds-roller{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}#scanner{width:100%;max-width:500px;margin-left:auto;margin-right:auto}@media(min-width: 768px){#scanner{margin-top:50px}}.alogin-page .panel-login{padding-top:100px;padding-bottom:100px;display:flex;align-items:center;justify-content:center}.alogin-page .panel-login form{display:flex;flex-direction:column;gap:10px}#tickets-orders{padding-top:100px;padding-bottom:100px}#tickets-orders h1{margin-bottom:20px}#tickets-orders table{margin-bottom:10px;background:#fff;border-bottom:none}#tickets-orders table thead tr{border-bottom:1px solid rgba(0,0,0,.1)}#tickets-orders table thead tr th{padding:15px 10px;font-size:1.25rem;font-weight:800;border-bottom:none}#tickets-orders table tbody tr td.edit-btn a{margin-left:20px}#tickets-orders table tbody tr td.edit-btn i{color:#333;font-size:20px;transition:color 200ms ease}#tickets-orders table tbody tr td.edit-btn i:hover{color:#72b81b}#tickets-orders table tr{border-bottom:1px solid rgba(0,0,0,.1)}#tickets-orders table tr td{padding:15px 10px;border-bottom:none}#tickets-orders #myTable_wrapper .row:nth-child(1){margin-bottom:10px}#tickets-orders #myTable_wrapper #myTable_length label{display:flex;flex-direction:row;align-items:center;gap:15px}#tickets-orders #myTable_wrapper #myTable_length label select{min-width:70px;background-color:#fff}#tickets-orders #myTable_wrapper #myTable_filter label{display:flex;flex-direction:row;align-items:center;gap:15px}#tickets-orders #myTable_wrapper #myTable_filter label input{margin-left:0;background:#fff}#tickets-orders #myTable_wrapper #myTable_paginate .pagination{display:flex;align-items:center;-moz-column-gap:5px;column-gap:5px;margin-bottom:0}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button{padding:0;border:none}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button.active a{color:#fff;background:#72b81b}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button:hover{border:none;background:none}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button.disabled>.page-link{color:#95a5a6}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button .page-link{color:#000}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button a{border:none}#order-data{padding:100px 0}#order-data .order-data .mini-nav-menu{margin-bottom:30px}#order-data .order-data .mini-nav-menu a:hover{color:#333}#order-data .order-data .box_01{margin-bottom:24px}#order-data .order-data .box_01 table{width:100%;background:#fff}#order-data .order-data .box_01 table tr{text-align:center;border-top:1px solid rgba(0,0,0,.1)}#order-data .order-data .box_01 table tr th{padding:8px}#order-data .order-data .box_01 table tr th h3{font-size:1.25rem;font-weight:800}#order-data .order-data .box_01 table tr td{padding:8px}#order-data .order-data .box_01 table tr td .btn_t1{width:30px;height:30px;border-radius:50%;border:none;transition:150ms ease-in-out}#order-data .order-data .box_01 table tr td .btn_t1.add:hover{color:#72b81b;border-color:#72b81b}#order-data .order-data .box_01 table tr td .btn_t1.subtract:hover{color:#eb5024;border-color:#eb5024}#order-data .order-data .box_01 table tr td .btn_t1.delete{border:none}#order-data .order-data .box_01 table tr td .btn_t1.delete:hover{color:#e31e4b}#order-data .order-data .box_01 .btn-save-new-list{display:block;margin:30px auto 0}#order-data .order-data .box_02 .order-detale-info .order-detale-info__wrapper{background:#fff;padding:30px}#order-data .order-data .box_02 .order-detale-info .order-detale-info__wrapper h2{font-size:1.5rem;margin-bottom:20px}#order-data .order-data .box_02 .order-detale-info .order-detale-info__wrapper .form-group .col-form-label{font-weight:600}#order-data .order-data .box_02 .order-summary .order-summary__wrapper{text-align:center;background:#fff;padding:30px;height:100%}#order-data .order-data .box_02 .order-summary .order-summary__wrapper h2{font-size:1.5rem;margin-bottom:20px}#order-data .order-data .box_02 .order-summary .order-summary__wrapper p{font-size:1.5rem;font-weight:800}#regulamin_box{margin-top:80px;margin-bottom:50px}#regulamin_box .regulamin_box__wrapper h5{font-size:26px;margin:0;color:#333;text-align:center;margin-bottom:20px}#regulamin_box .regulamin_box__wrapper h6{font-size:22px;margin-bottom:10px;text-transform:uppercase;font-family:"Lato",sans-serif;font-weight:800;letter-spacing:.8px;color:#333;text-align:center}#regulamin_box .regulamin_box__wrapper .regulamin__box{margin-bottom:50px}#regulamin_box .regulamin_box__wrapper .regulamin__box h5{text-align:center}.sale-box h2{text-align:center;font-size:48px;line-height:43px}.sale-box h2 span{color:#74aa32;font-weight:700}/*# sourceMappingURL=style.css.map */ \ No newline at end of file +@import"https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,300;1,400;1,700&display=swap";*{margin:0;padding:0;box-sizing:border-box}body{color:#333;font-family:"Lato",sans-serif;background-color:#f3f0cf;display:flex;flex-direction:column;min-height:100vh}.btn-t1{border:none;background-color:rgba(0,0,0,0);color:#333;padding:10px 30px;border-radius:10px;font-weight:800;background-color:rgb(164.4360189573,229.7914691943,83.2085308057);text-decoration:none}.btn-t1:disabled{background-color:rgba(149,165,166,.5);cursor:not-allowed}.btn-t2{border:none;background-color:rgba(0,0,0,0);color:#fff;padding:10px 30px;border-radius:10px;font-weight:800;background-color:#333;text-decoration:none}.btn-t2:disabled{background-color:rgba(149,165,166,.5);cursor:not-allowed}.btn{padding:9px 30px}.flex-buttons-group{display:flex;justify-content:center;align-items:center;gap:5px}.c_green{color:#72b81b}.c_red{color:#e31e4b}.top{position:relative;background:#72b81b;color:#fff;height:70px}.top .a_menu .logo{position:absolute;margin:10px 0 !important}.top .a_menu #nav-menu.active{display:block;right:0;top:0;left:0;bottom:0;height:100vh;background:#fff;z-index:999}.top .a_menu #menu-hamburger{position:relative;height:70px;display:flex;align-items:center;justify-content:flex-end;z-index:9999}.top .a_menu #menu-hamburger i{font-size:28px}.top .a_menu #menu-hamburger.active #btn-hamburger{position:relative;height:30px;width:30px}.top .a_menu #menu-hamburger.active #btn-hamburger span{position:absolute;width:100%;height:2px;background:#333;border-radius:5px;top:50%;transform:translateY(-50%)}.top .a_menu #menu-hamburger.active #btn-hamburger span:nth-child(1){top:50%;transform:rotate(45deg) translateY(-50%)}.top .a_menu #menu-hamburger.active #btn-hamburger span:nth-child(2){transform:translateX(-100%) translateY(-50%)}.top .a_menu #menu-hamburger.active #btn-hamburger span:nth-child(3){top:50%;transform:rotate(-45deg) translateY(-50%)}.top .a_menu #menu-hamburger #btn-hamburger{position:relative;height:30px;width:30px;overflow:hidden}.top .a_menu #menu-hamburger #btn-hamburger span{position:absolute;width:100%;height:2px;background:#fff;border-radius:5px;top:50%;transform:translateY(-50%);transition:all 250ms ease}.top .a_menu #menu-hamburger #btn-hamburger span:nth-child(1){top:20%}.top .a_menu #menu-hamburger #btn-hamburger span:nth-child(3){top:80%}@media(min-width: 768px){.top .a_menu #menu-hamburger{display:none}}@media(max-width: 767px){.top .a_menu #nav-menu{position:fixed;display:none}.top .a_menu #nav-menu ul{width:100%;max-width:300px;padding:0 15px;margin:0 auto;flex-direction:column;justify-content:center}.top .a_menu #nav-menu ul li a{color:#333}}.top .logo{background:#72b81b;display:block;margin:0 auto 10px;width:150px;border-radius:0 0 50% 50%;padding:10px 25px 25px}.top .logo img{width:100%}@media(max-width: 600px){.top .logo{margin:10px 0}}.top nav{height:70px}.top nav ul{height:100%;display:flex;flex-direction:row;align-items:center;justify-content:flex-end;gap:25px;list-style:none;margin:0;padding:0}.top nav ul li a{color:#fff;font-size:18px;font-weight:600;text-decoration:none}.main{display:flex;flex-direction:column;flex-grow:1}.main .tickets_calendar{margin-top:100px;width:100%;margin-bottom:50px}.main .tickets{margin-bottom:50px;display:flex;flex-direction:column;width:100%;gap:80px}.main .tickets .ticket-container{display:flex;flex-direction:column;width:100%;gap:40px;align-items:center}.main .tickets .ticket-container .title-container{text-align:center;position:relative}.main .tickets .ticket-container .title-container::after{content:"";position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:100px;border-bottom:2px dotted #000}.main .tickets .ticket-container .title-container .title{font-weight:800;font-size:46px}@media(max-width: 991px){.main .tickets .ticket-container .title-container .title{font-size:36px;font-size:22px}}.main .tickets .ticket-container .title-container .description{font-size:28px}.main .tickets .ticket{display:flex;flex-direction:row;align-items:center}.main .tickets .ticket .ticket-description{display:flex;flex-direction:column;align-items:center;justify-content:center;width:500px;text-align:center;color:#fff;border-radius:10px;padding:20px 0}.main .tickets .ticket .ticket-description--yellow{background-color:#ffc937}.main .tickets .ticket .ticket-description--red{background-color:#e31e4b}.main .tickets .ticket .ticket-description--blue{background-color:#138fcb}.main .tickets .ticket .ticket-description--orange{background-color:#eb5024}.main .tickets .ticket .ticket-description--green{background-color:#72b81b}.main .tickets .ticket .ticket-description--violet{background-color:#8900be}.main .tickets .ticket .ticket-description .ticket__name{font-size:46px;font-weight:800}@media(max-width: 991px){.main .tickets .ticket .ticket-description .ticket__name{font-size:32px}}@media(max-width: 767px){.main .tickets .ticket .ticket-description .ticket__name{font-size:28px}}.main .tickets .ticket .ticket-description .description{font-size:13px;font-style:italic;line-height:.75;margin-bottom:0}.main .tickets .ticket .ticket-description .ticket-alert{font-size:20px;margin:20px 0 0 0;font-weight:800;text-transform:uppercase;text-decoration:underline}@media(max-width: 991px){.main .tickets .ticket .ticket-description .ticket-alert{font-size:16px}}@media(max-width: 991px){.main .tickets .ticket .ticket-description{padding-left:10px;padding-right:10px;width:400px}}@media(max-width: 575px){.main .tickets .ticket .ticket-description{width:100%}}.main .tickets .ticket .price{font-size:46px;margin-left:40px;font-weight:800;min-width:138px}@media(max-width: 991px){.main .tickets .ticket .price{font-size:36px;min-width:130px}}@media(max-width: 767px){.main .tickets .ticket .price{margin-left:0;min-width:unset;margin-bottom:0}}.main .tickets .ticket .ticket-quantity{margin-left:30px}@media(max-width: 767px){.main .tickets .ticket .ticket-quantity{margin-left:0}}.main .tickets .ticket .ticket-quantity .button{width:30px;height:30px;border-radius:50%;border:1px solid #333;color:#333;background-color:rgba(0,0,0,0);text-align:center}.main .tickets .ticket .ticket-quantity span{padding:0 5px}@media(max-width: 767px){.main .tickets .ticket{flex-direction:column;row-gap:15px}}@media(max-width: 575px){.main .tickets .ticket{width:100%}}.main .bottom-info__description{text-align:center;font-size:16px;line-height:29px;padding:20px 0;position:relative}.main .bottom-info__description::after,.main .bottom-info__description::before{position:absolute;content:"";border-bottom:2px dotted #333;left:50%;transform:translateX(-50%);width:10%}.main .bottom-info__description::after{top:0}.main .bottom-info__description::before{bottom:0}.main .bottom-info__description p:nth-child(2){margin-bottom:0}.main .bottom-info__background{margin-top:40px;background-image:url("https://brzezovka.pl/css/../img/bgcity.png");background-position:bottom center;background-repeat:repeat-x;width:100%;height:300px}.footer{background-color:#34327c;display:flex;flex-direction:column;width:100%;color:#fff}.footer a{text-decoration:none;color:#eb5024}.footer .footer__top{display:grid;grid-template-columns:1fr 1fr 1fr;grid-template-rows:1fr;justify-items:center;align-items:center}.footer .footer__top .location{padding:20px 0;text-align:center}.footer .footer__top .location .title{font-size:22px;font-weight:800}.footer .footer__top .logo{height:100px}.footer .footer__top .logo img{width:100%;height:100%}.footer .footer__bottom{width:100%}.footer .footer__bottom p{text-align:center;margin:0;padding:30px 0}@media(max-width: 767px){.footer .footer__top{padding-top:30px;grid-template-columns:1fr}.footer .footer__top .opening-hours{grid-row-start:2}.footer .footer__top .logo{grid-row-start:1}.footer .footer__top .location{grid-row-start:3}}.shopping-cart-container--active .shopping-cart{opacity:1;transform:translateX(0)}.shopping-cart{opacity:0;position:fixed;top:80px;right:10px;display:flex;flex-direction:column;justify-content:center;align-items:center;border-radius:10px;background-color:#72b81b;color:#fff;gap:20px;width:230px;padding:20px 0;transition:opacity .2s;transform:translateX(100%)}.shopping-cart.hide{display:none}.shopping-cart .basket{font-size:30px}.shopping-cart .quantity{font-size:18px;font-weight:800}.shopping-cart .tickets__list{width:100%;list-style:none;padding:0 5px;background-color:#fff;color:#333;border-right:1px solid #333;border-left:1px solid #333;max-height:calc(90svh - 400px);overflow:auto}.shopping-cart .tickets__list p{margin-bottom:0}.shopping-cart .tickets__list .ticket{border:1px solid #333;border-radius:5px;margin:5px 0;padding:5px 0 5px 5px;display:grid;grid-template-columns:1fr 20px;grid-template-rows:1fr 1fr;grid-template-areas:"name btn" "price btn";font-size:12px;align-items:center}.shopping-cart .tickets__list .ticket__description{grid-area:name;font-weight:800;font-size:13px}.shopping-cart .tickets__list .ticket__price{grid-area:price;font-weight:800;font-size:13px}.shopping-cart .tickets__list .ticket__price span{font-weight:400}.shopping-cart .tickets__list .ticket .ticket__button{grid-area:btn;border:none;background-color:rgba(0,0,0,0);color:#333;font-size:14px;font-weight:800}.shopping-cart .sum-section{text-align:center;font-weight:800;font-size:18px}.shopping-cart .sum-section p{margin-bottom:0}.shopping-cart .off-btn{border:none;background-color:rgba(0,0,0,0);color:#fff;font-size:18px;font-weight:800;position:absolute;top:5px;right:15px}.shopping-cart .buy-btn{border:none;background-color:rgba(0,0,0,0);color:#333;padding:10px 30px;border-radius:10px;font-weight:800;background-color:rgb(164.4360189573,229.7914691943,83.2085308057);text-decoration:none}.mobile-cart-btn{position:fixed;bottom:50px;right:0;opacity:1;z-index:10;border-top-left-radius:10px;border-bottom-left-radius:10px;background-color:#72b81b;padding:20px 15px 15px 15px;transition:all 250ms ease-in-out;cursor:pointer}.mobile-cart-btn.hide{transform:translateX(100%)}.mobile-cart-btn span{position:absolute;top:8px;right:5px;display:flex;align-items:center;justify-content:center;padding:5px;background:#fff;border-radius:100%;width:20px;height:20px;line-height:1;font-size:12px}.mobile-cart-btn .mobile-cart-btn--img img{width:100%;max-width:40px}#basket_page .basket_content{margin-top:100px;margin-bottom:100px}#basket_page .box_01{margin-bottom:24px}#basket_page .box_01 table{width:100%;background:#fff;border-collapse:collapse}#basket_page .box_01 table tr{text-align:center;border-top:1px solid rgba(0,0,0,.1)}#basket_page .box_01 table tr th{padding:8px}#basket_page .box_01 table tr th h3{font-size:1.25rem;font-weight:800}@media(max-width: 991px){#basket_page .box_01 table tr th h3{font-size:.85rem}}#basket_page .box_01 table tr td{padding:8px}@media(max-width: 991px){#basket_page .box_01 table tr td{font-size:14px}}#basket_page .box_01 table tr td .btn_t1{width:30px;height:30px;border-radius:50%;border:none;transition:150ms ease-in-out;background:#f0f0f0;display:inline-block;color:#000}#basket_page .box_01 table tr td .btn_t1 i{color:#000}#basket_page .box_01 table tr td .btn_t1.add:hover{color:#72b81b;border-color:#72b81b}#basket_page .box_01 table tr td .btn_t1.subtract:hover{color:#eb5024;border-color:#eb5024}#basket_page .box_01 table tr td .btn_t1.delete{border:none}#basket_page .box_01 table tr td .btn_t1.delete:hover{color:#e31e4b}@media(max-width: 767px){#basket_page .box_01 table{background:rgba(0,0,0,0)}#basket_page .box_01 table thead,#basket_page .box_01 table tbody,#basket_page .box_01 table th,#basket_page .box_01 table td,#basket_page .box_01 table tr{display:block}#basket_page .box_01 table tbody>tr:first-child{display:none}#basket_page .box_01 table thead{display:none}#basket_page .box_01 table tr{margin-bottom:15px;border:1px solid #ddd;padding:10px;border-radius:10px;background:#fff}#basket_page .box_01 table td{position:relative;padding-left:50%;text-align:right;border:none;min-height:38px;padding-left:140px !important}#basket_page .box_01 table td:not(:last-child){border-bottom:1px solid #eee}#basket_page .box_01 table td::before{content:attr(data-label);position:absolute;left:10px;top:50%;font-weight:bold;color:#555;transform:translateY(-50%)}}@media(max-width: 767px)and (max-width: 575px){#basket_page .box_01 table td::before{font-size:12px}}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper{background:#fff;padding:30px}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper h2{font-size:1.5rem;margin-bottom:20px}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper .form-vat-box{display:none}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper .form-group .col-form-label{font-weight:600}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper .form-group .col-form-label .form-vat-option{opacity:0;transition:400ms ease}#basket_page .box_02 .basket_user_data .basket_user_data__wrapper .form-group .form-check a{color:#72b81b;text-decoration:none}#basket_page .box_02 .basket_summary .basket_summary__wrapper{text-align:center;background:#fff;padding:30px;height:100%}#basket_page .box_02 .basket_summary .basket_summary__wrapper h2{font-size:1.5rem}#basket_page .box_02 .basket_summary .basket_summary__wrapper p{font-size:1.5rem;font-weight:800}#basket_page .box_02 .basket_summary .basket_summary__wrapper .buy-btn{display:inline-block;border:none;background-color:rgba(0,0,0,0);color:#333;padding:10px 30px;border-radius:10px;font-weight:800;background-color:rgb(211.327014218,242.8436018957,172.1563981043);text-decoration:none}.spinner_container{display:flex;align-items:center;justify-content:center;padding:150px 0}.lds-roller{display:inline-block;position:relative;width:80px;height:80px}.lds-roller div{animation:lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;transform-origin:40px 40px}.lds-roller div:after{content:" ";display:block;position:absolute;width:7px;height:7px;border-radius:50%;background:#72b81b;margin:-4px 0 0 -4px}.lds-roller div:nth-child(1){animation-delay:-0.036s}.lds-roller div:nth-child(1):after{top:63px;left:63px}.lds-roller div:nth-child(2){animation-delay:-0.072s}.lds-roller div:nth-child(2):after{top:68px;left:56px}.lds-roller div:nth-child(3){animation-delay:-0.108s}.lds-roller div:nth-child(3):after{top:71px;left:48px}.lds-roller div:nth-child(4){animation-delay:-0.144s}.lds-roller div:nth-child(4):after{top:72px;left:40px}.lds-roller div:nth-child(5){animation-delay:-0.18s}.lds-roller div:nth-child(5):after{top:71px;left:32px}.lds-roller div:nth-child(6){animation-delay:-0.216s}.lds-roller div:nth-child(6):after{top:68px;left:24px}.lds-roller div:nth-child(7){animation-delay:-0.252s}.lds-roller div:nth-child(7):after{top:63px;left:17px}.lds-roller div:nth-child(8){animation-delay:-0.288s}.lds-roller div:nth-child(8):after{top:56px;left:12px}@keyframes lds-roller{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}#scanner{width:100%;max-width:500px;margin-left:auto;margin-right:auto}@media(min-width: 768px){#scanner{margin-top:50px}}.alogin-page .panel-login{padding-top:100px;padding-bottom:100px;display:flex;align-items:center;justify-content:center}.alogin-page .panel-login form{display:flex;flex-direction:column;gap:10px}#tickets-orders{padding-top:100px;padding-bottom:100px}#tickets-orders h1{margin-bottom:20px}#tickets-orders table{margin-bottom:10px;background:#fff;border-bottom:none}#tickets-orders table thead tr{border-bottom:1px solid rgba(0,0,0,.1)}#tickets-orders table thead tr th{padding:15px 10px;font-size:16px;font-weight:600;border-bottom:none}#tickets-orders table tbody tr td{font-size:14px}#tickets-orders table tbody tr td.edit-btn a{margin-left:20px}#tickets-orders table tbody tr td.edit-btn i{color:#333;font-size:20px;transition:color 200ms ease}#tickets-orders table tbody tr td.edit-btn i:hover{color:#72b81b}#tickets-orders table tr{border-bottom:1px solid rgba(0,0,0,.1)}#tickets-orders table tr td{padding:15px 10px;border-bottom:none}#tickets-orders #myTable_wrapper .row:nth-child(1){margin-bottom:10px}#tickets-orders #myTable_wrapper #myTable_length label{display:flex;flex-direction:row;align-items:center;gap:15px}#tickets-orders #myTable_wrapper #myTable_length label select{min-width:70px;background-color:#fff}#tickets-orders #myTable_wrapper #myTable_filter label{display:flex;flex-direction:row;align-items:center;gap:15px}#tickets-orders #myTable_wrapper #myTable_filter label input{margin-left:0;background:#fff}#tickets-orders #myTable_wrapper #myTable_paginate .pagination{display:flex;align-items:center;-moz-column-gap:5px;column-gap:5px;margin-bottom:0}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button{padding:0;border:none}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button.active a{color:#fff;background:#72b81b}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button:hover{border:none;background:none}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button.disabled>.page-link{color:#95a5a6}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button .page-link{color:#000}#tickets-orders #myTable_wrapper #myTable_paginate .pagination .paginate_button a{border:none}#order-data{padding:100px 0}#order-data .order-data .mini-nav-menu{margin-bottom:30px}#order-data .order-data .mini-nav-menu a:hover{color:#333}#order-data .order-data .box_01{margin-bottom:24px}#order-data .order-data .box_01 table{width:100%;background:#fff}#order-data .order-data .box_01 table tr{text-align:center;border-top:1px solid rgba(0,0,0,.1)}#order-data .order-data .box_01 table tr th{padding:8px}#order-data .order-data .box_01 table tr th h3{font-size:1.25rem;font-weight:800}#order-data .order-data .box_01 table tr td{padding:8px}#order-data .order-data .box_01 table tr td .btn_t1{width:30px;height:30px;border-radius:50%;border:none;transition:150ms ease-in-out}#order-data .order-data .box_01 table tr td .btn_t1.add:hover{color:#72b81b;border-color:#72b81b}#order-data .order-data .box_01 table tr td .btn_t1.subtract:hover{color:#eb5024;border-color:#eb5024}#order-data .order-data .box_01 table tr td .btn_t1.delete{border:none}#order-data .order-data .box_01 table tr td .btn_t1.delete:hover{color:#e31e4b}#order-data .order-data .box_01 .btn-save-new-list{display:block;margin:30px auto 0}#order-data .order-data .box_02 .order-detale-info .order-detale-info__wrapper{background:#fff;padding:30px}#order-data .order-data .box_02 .order-detale-info .order-detale-info__wrapper h2{font-size:1.5rem;margin-bottom:20px}#order-data .order-data .box_02 .order-detale-info .order-detale-info__wrapper .form-group .col-form-label{font-weight:600}#order-data .order-data .box_02 .order-summary .order-summary__wrapper{text-align:center;background:#fff;padding:30px;height:100%}#order-data .order-data .box_02 .order-summary .order-summary__wrapper h2{font-size:1.5rem;margin-bottom:20px}#order-data .order-data .box_02 .order-summary .order-summary__wrapper p{font-size:1.5rem;font-weight:800}#regulamin_box{margin-top:80px;margin-bottom:50px}#regulamin_box .regulamin_box__wrapper h5{font-size:26px;margin:0;color:#333;text-align:center;margin-bottom:20px}#regulamin_box .regulamin_box__wrapper h6{font-size:22px;margin-bottom:10px;text-transform:uppercase;font-family:"Lato",sans-serif;font-weight:800;letter-spacing:.8px;color:#333;text-align:center}#regulamin_box .regulamin_box__wrapper .regulamin__box{margin-bottom:50px}#regulamin_box .regulamin_box__wrapper .regulamin__box h5{text-align:center}.sale-box h2{text-align:center;font-size:48px;line-height:43px}.sale-box h2 span{color:#74aa32;font-weight:700}#dateForm{display:flex;justify-content:center;gap:15px;flex-wrap:wrap}#dateForm ._title{width:100%;font-weight:600;font-size:30px;text-align:center}.basket_protection{display:grid;grid-template-columns:1fr;justify-content:flex-end;margin:10px auto;text-align:right}.basket_protection p{margin-bottom:0;font-style:italic}/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/layout/style-css/style.css.map b/layout/style-css/style.css.map index 8d178dc..19914bc 100644 --- a/layout/style-css/style.css.map +++ b/layout/style-css/style.css.map @@ -1 +1 @@ -{"version":3,"sources":["../style-scss/style.scss","../style-scss/_mixins.scss"],"names":[],"mappings":"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","file":"style.css"} \ No newline at end of file +{"version":3,"sources":["../style-scss/style.scss","../style-scss/_mixins.scss"],"names":[],"mappings":"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","file":"style.css"} \ No newline at end of file diff --git a/layout/style-scss/.htaccess b/layout/style-scss/.htaccess new file mode 100644 index 0000000..7189fc0 --- /dev/null +++ b/layout/style-scss/.htaccess @@ -0,0 +1,9 @@ + + +RewriteEngine On +RewriteBase / +RewriteRule ^index\.php$ - [L] +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule . /index.php [L] + \ No newline at end of file diff --git a/layout/style-scss/style.scss b/layout/style-scss/style.scss index f698645..2e5a81b 100644 --- a/layout/style-scss/style.scss +++ b/layout/style-scss/style.scss @@ -254,8 +254,15 @@ body { flex-direction: column; flex-grow: 1; - .tickets { + .tickets_calendar { margin-top: 100px; + width: 100%; + margin-bottom: 50px; + } + + .tickets { + // margin-top: 100px; + // margin-top: 50px; margin-bottom: 50px; display: flex; flex-direction: column; @@ -287,6 +294,11 @@ body { .title { font-weight: 800; font-size: 46px; + + @include respond-below(md) { + font-size: 36px; + font-size: 22px; + } } .description { @@ -339,6 +351,13 @@ body { .ticket__name { font-size: 46px; font-weight: 800; + + @include respond-below(md) { + font-size: 32px; + } + @include respond-below(sm) { + font-size: 28px; + } } .description { @@ -354,6 +373,20 @@ body { font-weight: 800; text-transform: uppercase; text-decoration: underline; + + @include respond-below(md) { + font-size: 16px; + } + } + + @include respond-below(md) { + padding-left: 10px; + padding-right: 10px; + width: 400px; + } + + @include respond-below(xs) { + width: 100%; } } @@ -363,12 +396,26 @@ body { margin-left: 40px; font-weight: 800; min-width: 138px; + + @include respond-below(md) { + font-size: 36px; + min-width: 130px; + } + @include respond-below(sm) { + margin-left: 0; + min-width: unset; + margin-bottom: 0; + } } //przyciski .ticket-quantity { margin-left: 30px; + @include respond-below(sm) { + margin-left: 0; + } + .button { width: 30px; height: 30px; @@ -383,6 +430,14 @@ body { padding: 0 5px; } } + + @include respond-below(sm) { + flex-direction: column; + row-gap: 15px; + } + @include respond-below(xs) { + width: 100%; + } } } @@ -496,6 +551,14 @@ body { } } +.shopping-cart-container { + &--active { + .shopping-cart { + opacity: 1; + transform: translateX(0); + } + } +} //shoping cart .shopping-cart { opacity: 0; @@ -513,10 +576,15 @@ body { width: 230px; padding: 20px 0; transition: opacity 0.2s; + transform: translateX(100%); // border: 1px solid $base-font-color; - &--active { - opacity: 1; + // &--active { + // opacity: 1; + // transform: translateX(0); + // } + &.hide { + display: none; } .basket { @@ -537,6 +605,8 @@ body { border-right: 1px solid $base-font-color; border-left: 1px solid $base-font-color; // border: 1px solid $base-font-color; + max-height: calc(90svh - 400px); + overflow: auto; p { margin-bottom: 0; @@ -617,6 +687,50 @@ body { } } +.mobile-cart-btn { + position: fixed; + bottom: 50px; + right: 0; + opacity: 1; + z-index: 10; + border-top-left-radius: 10px; + border-bottom-left-radius: 10px; + background-color: #72b81b; + padding: 20px 15px 15px 15px; + transition: all 250ms ease-in-out; + cursor: pointer; + + // @media (min-width: 1300px) { + // display: none; + // } + + &.hide { + transform: translateX(100%); + } + + span { + position: absolute; + top: 8px; + right: 5px; + display: flex; + align-items: center; + justify-content: center; + padding: 5px; + background: #fff; + border-radius: 100%; + width: 20px; + height: 20px; + line-height: 1; + font-size: 12px; + } + .mobile-cart-btn--img { + img { + width: 100%; + max-width: 40px; + } + } +} + //* Basket - "page" #basket_page { .basket_content { @@ -630,6 +744,7 @@ body { table { width: 100%; background: $cWhite; + border-collapse: collapse; tr { text-align: center; @@ -641,18 +756,33 @@ body { h3 { font-size: 1.25rem; font-weight: 800; + + @include respond-below(md) { + font-size: 0.85rem; + } } } td { padding: 8px; + @include respond-below(md) { + font-size: 14px; + } + .btn_t1 { width: 30px; height: 30px; border-radius: 50%; border: none; transition: 150ms ease-in-out; + background: rgb(240, 240, 240); + display: inline-block; + color: #000; + + i { + color: #000; + } } .btn_t1.add { @@ -678,6 +808,65 @@ body { } } } + + @include respond-below(sm) { + background: transparent; + + thead, + tbody, + th, + td, + tr { + display: block; + } + + tbody { + > tr { + &:first-child { + display: none; + } + } + } + + thead { + display: none; /* Приховуємо заголовки */ + } + + tr { + margin-bottom: 15px; + border: 1px solid #ddd; + padding: 10px; + border-radius: 10px; + background: #fff; + } + + td { + position: relative; + padding-left: 50%; + text-align: right; + border: none; + min-height: 38px; + padding-left: 140px !important; + + &:not(:last-child) { + border-bottom: 1px solid #eee; + } + } + + td::before { + content: attr(data-label); + position: absolute; + left: 10px; + top: 50%; + font-weight: bold; + color: #555; + transform: translateY(-50%); + + @include respond-below(xs) { + font-size: 12px; + } + } + } } } @@ -912,8 +1101,8 @@ body { th { padding: 15px 10px; - font-size: 1.25rem; - font-weight: 800; + font-size: 16px; + font-weight: 600; border-bottom: none; } } @@ -922,6 +1111,8 @@ body { tbody { tr { td { + font-size: 14px; + &.edit-btn { a { margin-left: 20px; @@ -1195,3 +1386,30 @@ body { } } } + +#dateForm { + display: flex; + justify-content: center; + gap: 15px; + flex-wrap: wrap; + + ._title { + width: 100%; + font-weight: 600; + font-size: 30px; + text-align: center; + } +} + +.basket_protection { + display: grid; + grid-template-columns: 1fr; + justify-content: flex-end; + margin: 10px auto; + text-align: right; + + p { + margin-bottom: 0; + font-style: italic; + } +} diff --git a/templates/tickets/basket-form.php b/templates/tickets/basket-form.php index 7ae277b..0ec6944 100644 --- a/templates/tickets/basket-form.php +++ b/templates/tickets/basket-form.php @@ -19,10 +19,10 @@ cart as $ticket_id => $combinations) : ?> $value) : ?> - settings['tickets'][$ticket_id]['name']; ?> (x) - zł - zł - + settings['tickets'][$ticket_id]['name']; ?> (x) + zł + zł + - + diff --git a/templates/tickets/basket-view.php b/templates/tickets/basket-view.php index 22c0086..d7f0691 100644 --- a/templates/tickets/basket-view.php +++ b/templates/tickets/basket-view.php @@ -35,10 +35,10 @@ cart as $ticket_id => $combinations) : ?> $value) : ?> - settings['tickets'][$ticket_id]['name']; ?> (x) - zł - zł - + settings['tickets'][$ticket_id]['name']; ?> (x) + zł + zł + - + + -