123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&display=swapp');
- * {
- font-family: 'Roboto', sans-serif;
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- }
- body {
- background: #efefef;
- -webkit-print-color-adjust: exact;
- }
- @media print {
- .print-none {
- display: none;
- }
- }
- .sh-container {
- width: 8.5in;
- height: 11in;
- overflow: hidden;
- margin-inline:auto;
- }
- .coupon-container {
- width: 8.5in;
- height: 10in;
- overflow: hidden;
- margin-inline:auto;
- background-color: #ffffff !important;
- -webkit-print-color-adjust: exact;
- display: flex;
- flex-direction: column;
- }
- .primary-bg {
- background-color: var(--pry-color);
- -webkit-print-color-adjust: exact;
- color: #fff;
- }
- .primary-color {
- color: var(--pry-color);
- }
- .crop-markers {
- height: .125in;
- width:.125in;
- border:1px dashed #000;
- display: block;
- position: absolute;
- }
- .header {
- padding: 30px 60px;
- text-align: center;
- position: relative;
- }
- .header .crop-markers {
- top:0;
- border-top:0;
- }
- .crop-left {
- left: 0;
- border-left:0;
- }
- .crop-right {
- right: 0;
- border-right:0;
- }
- .footer {
- margin-top: auto;
- padding: 20px 20px 30.125px 20px;
- text-align: center;
- position: relative;
- }
- .footer .crop-markers {
- bottom:0;
- border-bottom:0;
- }
- .flyer-pp-container {
- height: 280px;
- width: 280px;
- display: grid;
- place-items: center;
- }
- .flyer-pp-container img{
- height: 240px;
- width: 240px;
- object-fit: contain;
- }
- .qr_code {
- height: 70px;
- width: 70px;
- object-fit: contain;
- }
- @media print {
- body {
- background-color: #ffffff;
- }
- .coupon-container {
- width: auto;
- }
- }
|