inital commit
This commit is contained in:
222
resources/css/payment.css
vendored
Normal file
222
resources/css/payment.css
vendored
Normal file
@@ -0,0 +1,222 @@
|
||||
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
|
||||
.modal-backdrop {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
z-index: 100000000;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.modal {
|
||||
/*overflow-x: auto;*/
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
position: relative;
|
||||
padding: 20px 10px;
|
||||
}
|
||||
|
||||
#payment-modal {
|
||||
font-family: Arial;
|
||||
font-size: 17px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
|
||||
#payment-modal * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#payment-modal .row {
|
||||
display: -ms-flexbox; /* IE10 */
|
||||
display: flex;
|
||||
-ms-flex-wrap: wrap; /* IE10 */
|
||||
flex-wrap: wrap;
|
||||
margin: 0 -16px;
|
||||
}
|
||||
|
||||
#payment-modal .col-25 {
|
||||
-ms-flex: 25%; /* IE10 */
|
||||
flex: 25%;
|
||||
}
|
||||
|
||||
#payment-modal .col-50 {
|
||||
-ms-flex: 50%; /* IE10 */
|
||||
flex: 50%;
|
||||
}
|
||||
|
||||
#payment-modal .col-75 {
|
||||
-ms-flex: 75%; /* IE10 */
|
||||
flex: 75%;
|
||||
}
|
||||
|
||||
#payment-modal
|
||||
.col-25,
|
||||
.col-50,
|
||||
.col-75 {
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
#payment-modal .payment-container {
|
||||
/* background-color: #f2f2f2; */
|
||||
font-family: 'Roboto', sans-serif;
|
||||
color: #2A3F54;
|
||||
padding: 5px 20px 15px 20px;
|
||||
border: 1px solid lightgrey;
|
||||
border-radius: 3px;
|
||||
background: #fff;
|
||||
padding: 10px 25px;
|
||||
box-shadow: 0 10px 10px 10px rgb(0 0 0 / 10%);
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
#payment-modal input[type=text] {
|
||||
width: 100%;
|
||||
margin-bottom: 20px;
|
||||
padding: 12px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
#payment-modal label {
|
||||
margin-bottom: 10px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#payment-modal .icon-container {
|
||||
margin-bottom: 20px;
|
||||
padding: 7px 0;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
#payment-modal .btn {
|
||||
background-color: #FF440A !important;
|
||||
color: white;
|
||||
padding: 12px;
|
||||
margin: 10px 0;
|
||||
border: none;
|
||||
width: 100%;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
#payment-modal .btn:hover {
|
||||
background-color: #45a049;
|
||||
}
|
||||
|
||||
#payment-modal a {
|
||||
color: #2196F3;
|
||||
}
|
||||
|
||||
#payment-modal hr {
|
||||
border: 1px solid lightgrey;
|
||||
}
|
||||
|
||||
#payment-modal span.price {
|
||||
float: right;
|
||||
color: grey;
|
||||
}
|
||||
#payment-modal .bottom-panel{
|
||||
text-align: center;
|
||||
}
|
||||
#payment-modal .smart-credit-pkg{
|
||||
width: 250px !important;
|
||||
margin-top: -20px !important;
|
||||
margin-left: 15px !important;
|
||||
padding-top: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
#payment-modal .top-text{
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
padding-bottom: 15px;
|
||||
margin-left: 15px;
|
||||
color: darkblue;
|
||||
}
|
||||
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */
|
||||
@media (max-width: 800px) {
|
||||
#payment-modal .row {
|
||||
flex-direction: column-reverse;
|
||||
}
|
||||
#payment-modal .col-25 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
#payment-modal .main{
|
||||
margin: 15px !important;
|
||||
}
|
||||
|
||||
#payment-modal .container{
|
||||
border-radius: 0;
|
||||
}
|
||||
#payment-modal .text-center-sm{
|
||||
text-align: center !important;
|
||||
}
|
||||
#payment-modal .bottom-panel{
|
||||
text-align: center !important;
|
||||
}
|
||||
#payment-modal .smart-credit-pkg{
|
||||
width: 95% !important;
|
||||
margin-top: -20px !important;
|
||||
padding-top: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
#payment-modal .top-text{
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
padding-bottom: 15px;
|
||||
color: darkblue;
|
||||
}
|
||||
#payment-modal .header-panel{
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
@media (max-width: 700px) {
|
||||
#payment-modal .row {
|
||||
display: flow-root;
|
||||
flex-wrap: wrap;
|
||||
margin: 0 -16px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 400px) {
|
||||
|
||||
}
|
||||
|
||||
|
||||
#payment-modal .center{
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#payment-modal .text-center {
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
#payment-modal .btn2 {
|
||||
background-color: #FF440A !important;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
font-weight: 800;
|
||||
font-size: 1em;
|
||||
text-transform: uppercase;
|
||||
color: #fff;
|
||||
border-radius: 7px;
|
||||
margin: 20px;
|
||||
padding: 10px 100px;
|
||||
background-size: 200% auto;
|
||||
border: none;
|
||||
color: white;
|
||||
box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
|
||||
background-image: linear-gradient(to right, #FF440A 0%, #dc3d0c 50%, #9e2d0a 100%);
|
||||
background-image: -webkit-linear-gradient(to right, #FF440A 0%, #dc3d0c 50%, #9e2d0a 100%);
|
||||
background-image: -o-linear-gradient(to right, #FF440A 0%, #dc3d0c 50%, #9e2d0a 100%);
|
||||
transition: 0.35s;
|
||||
-webkit-transition: 0.35s;
|
||||
}
|
||||
Reference in New Issue
Block a user