73 lines
1.2 KiB
CSS
73 lines
1.2 KiB
CSS
body {
|
|
background-color: #f8f8f8;
|
|
}
|
|
|
|
.payment-container {
|
|
max-width: 1140px;
|
|
margin: 60px auto;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.payment-header {
|
|
background-color: var(--main-color);
|
|
color: white;
|
|
padding: 10px 15px;
|
|
text-align: center;
|
|
}
|
|
|
|
.payment-info {
|
|
padding: 15px;
|
|
border-bottom: 1px solid #eee;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.payment-amount {
|
|
color: #FF5722;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.payment-methods {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.qrcode-container {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.qrcode-img {
|
|
width: 150px;
|
|
height: 150px;
|
|
border: 1px solid #ddd;
|
|
margin: 10px auto;
|
|
}
|
|
|
|
.payment-logo {
|
|
height: 40px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.payment-scan {
|
|
display: none;
|
|
}
|
|
}
|
|
.dj-btn {
|
|
width: 200px;
|
|
height: 60px;
|
|
background: linear-gradient(180deg, var(--main-color) 0, var(--main-color) 100%); color: #fff;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 14px;
|
|
margin-top: 20px;
|
|
font-size: 20px;
|
|
font-family: Roboto;
|
|
letter-spacing: .2px;
|
|
font-weight: 500;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.dj-btn:hover {
|
|
background: linear-gradient(180deg, var(--main-color) 0, var(--main-color) 100%);
|
|
} |