first commit
This commit is contained in:
169
modules/paylane/views/css/forms.css
Normal file
169
modules/paylane/views/css/forms.css
Normal file
@@ -0,0 +1,169 @@
|
||||
.cart_navigation {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.paylane-form {
|
||||
padding: 2px 0 20px 0;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.paylane-form__field {
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
.paylane-form--bank-transfer .paylane-form__payment-types-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.paylane-form--bank-transfer .paylane-form__payment-types-list > li {
|
||||
margin-left: 10px;
|
||||
margin-bottom: 10px;
|
||||
flex: 1 0 20%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.paylane-form--bank-transfer .paylane-form__payment-types-list > li > label {
|
||||
display: inline-flex !important;
|
||||
cursor: pointer;
|
||||
opacity: 0.5;
|
||||
transition: 0.2s opacity ease-in-out;
|
||||
width: 150px;
|
||||
height: 100px;
|
||||
padding: 10px;
|
||||
border: 1px solid #ccc;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.paylane-form--bank-transfer .paylane-form__payment-types-list > li > label:hover,
|
||||
.paylane-form--bank-transfer .paylane-form__payment-types-list > li > label.checked,
|
||||
.paylane-form--bank-transfer .paylane-form__payment-types-list > li input:checked + label {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.paylane-form--bank-transfer .paylane-form__payment-types-list > li input,
|
||||
.paylane-form--bank-transfer .paylane-form__payment-types-list > li .radio
|
||||
{
|
||||
position: fixed;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.paylane-form--bank-transfer .paylane-form__payment-types-list > li > label > img {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
max-width: 125px;
|
||||
max-height: 50px;
|
||||
}
|
||||
|
||||
.paylane-form--bank-transfer .paylane-form__payment-types-list > li > label > span {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: 11px;
|
||||
padding-top: 5px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
line-height: 1.25em;
|
||||
}
|
||||
|
||||
.apple-pay-button {
|
||||
-webkit-appearance: -apple-pay-button;
|
||||
-apple-pay-button-type: buy;
|
||||
visibility: visible;
|
||||
display: inline-block;
|
||||
width: 200px;
|
||||
min-height: 30px;
|
||||
border: 1px solid black;
|
||||
background-image: -webkit-named-image(apple-pay-logo-black);
|
||||
background-size: 100% calc(60% + 2px);
|
||||
background-repeat: no-repeat;
|
||||
background-color: white;
|
||||
background-position: 50% 50%;
|
||||
border-radius: 5px;
|
||||
padding: 0px;
|
||||
margin: 5px auto;
|
||||
transition: background-color .15s;
|
||||
}
|
||||
|
||||
.paylane-input-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.blik-button {
|
||||
-webkit-appearance: -apple-pay-button;
|
||||
-apple-pay-button-type: buy;
|
||||
visibility: visible;
|
||||
display: inline-block;
|
||||
width: 200px;
|
||||
min-height: 30px;
|
||||
border: 1px solid black;
|
||||
background-image: -webkit-named-image(apple-pay-logo-black);
|
||||
background-size: 100% calc(60% + 2px);
|
||||
background-repeat: no-repeat;
|
||||
background-color: white;
|
||||
background-position: 50% 50%;
|
||||
border-radius: 5px;
|
||||
padding: 0px;
|
||||
margin: 5px auto;
|
||||
transition: background-color .15s;
|
||||
}
|
||||
|
||||
.payment-options .payment-option {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.payment-options .payment-option label {
|
||||
display: flex !important;
|
||||
align-items: center;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.payment-options .payment-option label img {
|
||||
max-height: 50px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
body#checkout .additional-information {
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.paylane-form .button-set-bottom {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.paylane-form button[type="submit"] {
|
||||
|
||||
}
|
||||
|
||||
.paylane-credit-card-hide-form{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
#paylane_payment_button a {
|
||||
padding: 10px;
|
||||
padding-top: 30px;
|
||||
padding-bottom: 30px;
|
||||
background-color: #FBFBFB;
|
||||
}
|
||||
|
||||
#paylane_payment_button a:hover {
|
||||
background-color: #f6f6f6;
|
||||
}
|
||||
|
||||
#paylane_payment_button a:after {
|
||||
display: block;
|
||||
content: "\f054";
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
margin-top: -11px;
|
||||
top: 50%;
|
||||
font-family: "FontAwesome";
|
||||
font-size: 25px;
|
||||
height: 22px;
|
||||
width: 14px;
|
||||
color: #777777;
|
||||
}
|
||||
11
modules/paylane/views/css/index.php
Normal file
11
modules/paylane/views/css/index.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
||||
30
modules/paylane/views/css/paylane.css
Normal file
30
modules/paylane/views/css/paylane.css
Normal file
@@ -0,0 +1,30 @@
|
||||
#cnpIframe {
|
||||
border: none;
|
||||
display: none !important;
|
||||
}
|
||||
.cnpForm {
|
||||
display: block !important;
|
||||
}
|
||||
div.payment_module {
|
||||
margin-bottom: 10px; }
|
||||
div.payment_module {
|
||||
display: block;
|
||||
border: 1px solid #d6d4d4;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
font-size: 17px;
|
||||
line-height: 23px;
|
||||
color: #333333;
|
||||
font-weight: bold;
|
||||
padding: 30px 40px 12px 99px;
|
||||
letter-spacing: -1px;
|
||||
position: relative;
|
||||
}
|
||||
div.payment_module:hover {
|
||||
background-color: #f6f6f6;
|
||||
}
|
||||
div.payment_module button {
|
||||
font-weight: bold;
|
||||
font-size: 17px;
|
||||
}
|
||||
280
modules/paylane/views/css/paylanebackoffice.css
Normal file
280
modules/paylane/views/css/paylanebackoffice.css
Normal file
@@ -0,0 +1,280 @@
|
||||
.panel-presentation {
|
||||
padding-left: 0px !important;
|
||||
padding-right: 0px !important;
|
||||
}
|
||||
.paylane-tabs {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.paylane-tabs nav {
|
||||
padding: 0;
|
||||
margin: 30px 0 0 0;
|
||||
display: block;
|
||||
}
|
||||
.paylane-tabs nav a {
|
||||
padding: 8px 12px;
|
||||
background-color: none;
|
||||
color: #00aff0;
|
||||
text-decoration: none;
|
||||
margin: 0 5px 0 1px;
|
||||
font-size: 15px;
|
||||
vertical-align: top;
|
||||
position: relative;
|
||||
top: -5px;
|
||||
font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.paylane-tabs nav a:hover {
|
||||
border: 1px solid #ddd;
|
||||
border-bottom: none;
|
||||
border-radius: 3px 3px 0 0;
|
||||
margin: 0 4px 0 0;
|
||||
text-decoration: none;
|
||||
color: #0077a4;
|
||||
}
|
||||
.paylane-tabs nav a.active {
|
||||
border-radius: 3px 3px 0 0;
|
||||
background-color: #F5F8F9;
|
||||
text-decoration: none;
|
||||
border: 1px solid #ccc;
|
||||
border-bottom: none;
|
||||
margin: 0 4px 0 0;
|
||||
font-size: 15px;
|
||||
color: #000;
|
||||
}
|
||||
.paylane-tabs .content {
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
background-color: #F5F8F9;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 0 3px 3px 3px;
|
||||
}
|
||||
|
||||
.payment-config-logo {
|
||||
height: 35px !important;
|
||||
}
|
||||
.payment-config-tooltip {
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
padding: 0 0 10px 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.border-none {
|
||||
border: none !important;
|
||||
}
|
||||
.payment-label {
|
||||
margin-bottom: 0 !important;
|
||||
padding-top: 7px;
|
||||
font-size: 13px;
|
||||
font-weight: normal !important;
|
||||
color: #666;
|
||||
}
|
||||
.form-group {
|
||||
border-top: 1px solid #eee;
|
||||
padding: 15px 0;
|
||||
margin: 0 !important;
|
||||
}
|
||||
.logo-wrapper {
|
||||
text-align:right;
|
||||
padding-right: 10px;
|
||||
}
|
||||
.switch-label {
|
||||
padding-right: 20px !important;
|
||||
}
|
||||
|
||||
.general-tooltip {
|
||||
font: 12px "Open Sans",Helvetica,Arial,sans-serif;
|
||||
font-style: italic;
|
||||
color: #959595;
|
||||
font-weight: normal !important;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
.align-right {
|
||||
text-align: right;
|
||||
}
|
||||
.pres-header-logo {
|
||||
border-bottom: 1px solid #eee;
|
||||
padding-bottom: 25px;
|
||||
text-align: center;
|
||||
}
|
||||
.pres-header-group {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.pres-logo {
|
||||
height: 100px !important;
|
||||
}
|
||||
.pres-content {
|
||||
padding-top: 25px;
|
||||
}
|
||||
.pres-content-img {
|
||||
text-align: center;
|
||||
}
|
||||
.pres-content-wrapper {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
.pres-content-bottom {
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
.pres-header-text {
|
||||
font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||||
font-size: 21px;
|
||||
}
|
||||
.pres-about-image {
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
.pres-content-wrapper p {
|
||||
padding: 15px 0 0;
|
||||
font-size: 13px !important;
|
||||
line-height: 24px;
|
||||
}
|
||||
.pres-content ul{
|
||||
padding: 0 0 0 20px;
|
||||
font-size: 13px !important;
|
||||
line-height: 24px;
|
||||
}
|
||||
.pres-signup {
|
||||
text-decoration: none;
|
||||
}
|
||||
.pres-signup:hover {
|
||||
color: #2aa9ee !important;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
.pres-btn-signup {
|
||||
width: auto;
|
||||
height: 40px;
|
||||
margin-top: 20px;
|
||||
padding: 12px 40px 12px 40px;
|
||||
background-color: #2aa9ee;
|
||||
font-size: 16px !important;
|
||||
font-weight: bold;
|
||||
color: #fff !important;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.pres-btn-signup:hover {
|
||||
background-color: #53bcc2;
|
||||
color: #fff !important;
|
||||
text-decoration: none !important;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.pres-footer {
|
||||
font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
padding-top: 30px;
|
||||
text-align: right;
|
||||
text-transform: lowercase;
|
||||
background: none !important;
|
||||
}
|
||||
.padtop-20 {
|
||||
padding-top: 20px !important;
|
||||
}
|
||||
.pres-circle {
|
||||
width: 130px;
|
||||
height: 130px;
|
||||
margin:0 auto;
|
||||
margin-top: 5px;
|
||||
font-size: 61px;
|
||||
font-weight: bold;
|
||||
text-align: center
|
||||
}
|
||||
.pres-uppercase {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.pres-firt-uppercase {
|
||||
display: block;
|
||||
text-transform: uppercase;
|
||||
|
||||
}
|
||||
.step-title {
|
||||
font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||||
font-size: 21px;
|
||||
font-weight: bold;
|
||||
color: #2aa9ee;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
padding-top: 40px;
|
||||
height: 100px;
|
||||
}
|
||||
.step-title a {
|
||||
font-family: "Ubuntu Condensed",Helvetica,Arial,sans-serif;
|
||||
font-size: 21px;
|
||||
font-weight: bold;
|
||||
color: #2aa9ee;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
}
|
||||
.step-title a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
.step-text {
|
||||
display: none;
|
||||
text-align: center;
|
||||
padding-top: 40px !important;
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity 5s ease-in;
|
||||
-moz-transition: opacity 5s ease-in;
|
||||
-o-transition: opacity 5s ease-in;
|
||||
-ms-transition: opacity 5s ease-in;
|
||||
transition: opacity 5s ease-in;
|
||||
}
|
||||
.step-title:hover ~ .step-text,
|
||||
.pres-circle:hover ~ .step-text {
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
opacity: 0.9;
|
||||
}
|
||||
.panel-footer button {
|
||||
border: none !important;
|
||||
color: #ffffff !important;
|
||||
background-color: #2aa9ee !important;
|
||||
width: 40%;
|
||||
margin: 0 30%;
|
||||
}
|
||||
.panel-footer button i {
|
||||
color: #ffffff !important;
|
||||
}
|
||||
.panel-footer button:hover {
|
||||
background-color: #53bcc2 !important;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1199px) {
|
||||
.logo-wrapper {
|
||||
padding: 0 !important;
|
||||
text-align: left !important;
|
||||
}
|
||||
.switch-label {
|
||||
padding: 10px 0 0 0 !important;
|
||||
text-align: left !important;
|
||||
width: 75% !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1200px) and (max-width: 1309px) {
|
||||
.switch-label {
|
||||
padding: 0 !important;
|
||||
text-align: left !important;
|
||||
width: 75% !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1200px) {
|
||||
.pres-header-text {
|
||||
text-align: center;
|
||||
}
|
||||
.pres-content-text {
|
||||
padding-left: 20px !important;
|
||||
padding-right: 20px !important;
|
||||
}
|
||||
}
|
||||
|
||||
8
modules/paylane/views/css/payment_options.css
Normal file
8
modules/paylane/views/css/payment_options.css
Normal file
@@ -0,0 +1,8 @@
|
||||
.payment-option {
|
||||
margin-bottom: 1.5em !important;
|
||||
width: 105%;
|
||||
}
|
||||
.payment-option img {
|
||||
height: 40px;
|
||||
margin-top: -5px;
|
||||
}
|
||||
4
modules/paylane/views/css/style.css
Normal file
4
modules/paylane/views/css/style.css
Normal file
@@ -0,0 +1,4 @@
|
||||
p {
|
||||
font: 28px Arial;
|
||||
background-color: yellow;
|
||||
}
|
||||
Reference in New Issue
Block a user