commerce_paypal_checkout.css in Commerce PayPal 7.2
@media all and (min-width: 61em) {
.page-cart .paypal-buttons-container {
float: right;
width: 50%;
}
}
.page-checkout-payment .checkout-help {
display: none;
}
#paypal-background-overlay {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
}
.paypal-background-overlay-loader {
border: 16px solid #f3f3f3;
border-top: 16px solid #3498db;
border-radius: 50%;
width: 120px;
height: 120px;
animation: paypal-spin-loader 2s linear infinite;
}
@keyframes paypal-spin-loader {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
File
modules/checkout/css/commerce_paypal_checkout.css
View source
- @media all and (min-width: 61em) {
- .page-cart .paypal-buttons-container {
- float: right;
- width: 50%;
- }
- }
- .page-checkout-payment .checkout-help {
- display: none;
- }
- #paypal-background-overlay {
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background-color: rgba(0, 0, 0, 0.5);
- z-index: 9999;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .paypal-background-overlay-loader {
- border: 16px solid #f3f3f3;
- border-top: 16px solid #3498db;
- border-radius: 50%;
- width: 120px;
- height: 120px;
- animation: paypal-spin-loader 2s linear infinite;
- }
- @keyframes paypal-spin-loader {
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(360deg); }
- }