586 lines
11 KiB
CSS
586 lines
11 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
font-family: Arial, sans-serif;
|
|
color: rgba(200, 220, 240, 0.95);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.atm-container {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
padding-right: 5%;
|
|
perspective: 1200px;
|
|
}
|
|
|
|
.atm-screen {
|
|
width: 480px;
|
|
height: 640px;
|
|
background: rgba(15, 20, 30, 0.95);
|
|
border: 2px solid rgba(100, 150, 200, 0.5);
|
|
border-radius: 8px;
|
|
transform: rotateY(-10deg) translateZ(0);
|
|
transform-style: preserve-3d;
|
|
box-shadow:
|
|
-8px 0 20px rgba(100, 150, 200, 0.25),
|
|
0 8px 32px rgba(0, 0, 0, 0.8);
|
|
display: grid;
|
|
grid-template-rows: auto 1fr auto;
|
|
overflow: hidden;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
/* Header */
|
|
.atm-header {
|
|
padding: 1.25rem 1.5rem;
|
|
background: rgba(20, 30, 45, 0.9);
|
|
border-bottom: 2px solid rgba(100, 150, 200, 0.3);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.atm-logo {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.atm-title {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
color: rgba(100, 150, 200, 1);
|
|
}
|
|
|
|
/* Content */
|
|
.atm-content {
|
|
flex: 1;
|
|
padding: 1.5rem;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.atm-content::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
.atm-content::-webkit-scrollbar-track {
|
|
background: rgba(15, 20, 30, 0.5);
|
|
}
|
|
|
|
.atm-content::-webkit-scrollbar-thumb {
|
|
background: rgba(100, 150, 200, 0.3);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.atm-view {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
height: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.atm-view h3 {
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: rgba(200, 220, 255, 1);
|
|
text-align: center;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 1px solid rgba(100, 150, 200, 0.2);
|
|
}
|
|
|
|
/* Welcome Screen */
|
|
.welcome-message {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
padding: 2rem 1rem;
|
|
flex: 1;
|
|
}
|
|
|
|
.welcome-icon {
|
|
font-size: 4rem;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.welcome-message h2 {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
color: rgba(200, 220, 255, 1);
|
|
}
|
|
|
|
.welcome-message p {
|
|
font-size: 0.875rem;
|
|
color: rgba(140, 160, 180, 0.85);
|
|
}
|
|
|
|
/* PIN Entry */
|
|
.pin-entry {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
flex: 1;
|
|
justify-content: center;
|
|
}
|
|
|
|
.pin-entry h3 {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
}
|
|
|
|
.pin-display {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.pin-dot {
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 50%;
|
|
background: rgba(100, 150, 200, 0.2);
|
|
border: 2px solid rgba(100, 150, 200, 0.4);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.pin-dot.filled {
|
|
background: rgba(100, 150, 200, 0.8);
|
|
border-color: rgba(150, 200, 255, 0.8);
|
|
box-shadow: 0 0 10px rgba(100, 150, 200, 0.5);
|
|
}
|
|
|
|
.keypad {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.key-btn {
|
|
padding: 1rem;
|
|
background: rgba(20, 30, 45, 0.7);
|
|
border: 1px solid rgba(100, 150, 200, 0.4);
|
|
border-radius: 4px;
|
|
color: rgba(200, 220, 240, 0.95);
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.key-btn:hover {
|
|
background: rgba(30, 45, 70, 0.9);
|
|
border-color: rgba(150, 200, 255, 0.7);
|
|
box-shadow:
|
|
0 0 15px rgba(100, 150, 200, 0.2),
|
|
inset 0 0 20px rgba(100, 150, 200, 0.05);
|
|
}
|
|
|
|
.key-btn:active {
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
.key-clear {
|
|
background: rgba(200, 150, 100, 0.2);
|
|
border-color: rgba(200, 150, 100, 0.4);
|
|
}
|
|
|
|
.key-clear:hover {
|
|
background: rgba(200, 150, 100, 0.3);
|
|
border-color: rgba(255, 200, 150, 0.6);
|
|
}
|
|
|
|
.key-enter {
|
|
background: rgba(100, 150, 200, 0.2);
|
|
border-color: rgba(100, 150, 200, 0.5);
|
|
}
|
|
|
|
.key-enter:hover {
|
|
background: rgba(100, 150, 200, 0.3);
|
|
border-color: rgba(150, 200, 255, 0.7);
|
|
}
|
|
|
|
/* Account Summary */
|
|
.account-summary {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 1rem;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.summary-item {
|
|
padding: 1.25rem;
|
|
background: rgba(20, 30, 45, 0.6);
|
|
border: 1px solid rgba(100, 150, 200, 0.3);
|
|
border-left: 3px solid rgba(100, 150, 200, 0.5);
|
|
border-radius: 4px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.summary-label {
|
|
font-size: 0.75rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: rgba(140, 160, 180, 0.85);
|
|
}
|
|
|
|
.summary-value {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: rgba(100, 200, 150, 1);
|
|
}
|
|
|
|
/* Menu Options */
|
|
.menu-options {
|
|
display: grid;
|
|
grid-template-rows: 1fr;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.menu-btn {
|
|
padding: 1rem;
|
|
background: rgba(20, 30, 45, 0.6);
|
|
border: 1px solid rgba(100, 150, 200, 0.3);
|
|
border-left: 3px solid rgba(100, 150, 200, 0.4);
|
|
border-radius: 4px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.menu-btn:hover {
|
|
background: rgba(30, 45, 70, 0.8);
|
|
border-left-color: rgba(150, 200, 255, 0.7);
|
|
box-shadow:
|
|
0 0 15px rgba(100, 150, 200, 0.15),
|
|
inset 0 0 20px rgba(100, 150, 200, 0.05);
|
|
}
|
|
|
|
.menu-icon {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.menu-text {
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: rgba(200, 220, 240, 0.95);
|
|
}
|
|
|
|
/* Quick Amounts */
|
|
.withdraw-display,
|
|
.deposit-display,
|
|
.transfer-display {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.25rem;
|
|
}
|
|
|
|
.quick-amounts {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.amount-btn {
|
|
padding: 1rem;
|
|
background: rgba(20, 30, 45, 0.7);
|
|
border: 1px solid rgba(100, 150, 200, 0.4);
|
|
border-radius: 4px;
|
|
color: rgba(100, 200, 150, 1);
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.amount-btn:hover {
|
|
background: rgba(30, 45, 70, 0.9);
|
|
border-color: rgba(150, 200, 255, 0.6);
|
|
box-shadow:
|
|
0 0 15px rgba(100, 150, 200, 0.15),
|
|
inset 0 0 20px rgba(100, 150, 200, 0.05);
|
|
}
|
|
|
|
/* Custom Amount */
|
|
.custom-amount {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.custom-amount label {
|
|
font-size: 0.75rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: rgba(140, 160, 180, 0.85);
|
|
}
|
|
|
|
/* Form Fields */
|
|
.transfer-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.form-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.form-field label {
|
|
font-size: 0.75rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: rgba(140, 160, 180, 0.85);
|
|
}
|
|
|
|
.amount-input,
|
|
.text-input {
|
|
padding: 0.875rem 1rem;
|
|
background: rgba(20, 30, 45, 0.7);
|
|
border: 1px solid rgba(100, 150, 200, 0.3);
|
|
border-radius: 4px;
|
|
color: rgba(200, 220, 240, 0.95);
|
|
font-size: 1rem;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.amount-input:focus,
|
|
.text-input:focus {
|
|
outline: none;
|
|
border-color: rgba(150, 200, 255, 0.6);
|
|
box-shadow:
|
|
0 0 15px rgba(100, 150, 200, 0.15),
|
|
inset 0 0 20px rgba(100, 150, 200, 0.05);
|
|
}
|
|
|
|
.amount-input::placeholder,
|
|
.text-input::placeholder {
|
|
color: rgba(100, 120, 140, 0.6);
|
|
}
|
|
|
|
/* Balance Display */
|
|
.balance-display {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
flex: 1;
|
|
}
|
|
|
|
.balance-item {
|
|
padding: 1.25rem;
|
|
background: rgba(20, 30, 45, 0.6);
|
|
border: 1px solid rgba(100, 150, 200, 0.3);
|
|
border-left: 3px solid rgba(100, 150, 200, 0.5);
|
|
border-radius: 4px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.balance-label {
|
|
font-size: 0.875rem;
|
|
color: rgba(160, 180, 200, 0.85);
|
|
}
|
|
|
|
.balance-amount {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: rgba(100, 200, 150, 1);
|
|
}
|
|
|
|
.balance-total {
|
|
border-left-color: rgba(100, 200, 150, 0.6);
|
|
background: rgba(30, 45, 70, 0.7);
|
|
}
|
|
|
|
.balance-total .balance-label {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: rgba(200, 220, 255, 1);
|
|
}
|
|
|
|
.balance-total .balance-amount {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
/* Deposit Info */
|
|
.atm-btn-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.deposit-info {
|
|
padding: 1rem;
|
|
background: rgba(20, 30, 45, 0.5);
|
|
border: 1px solid rgba(100, 150, 200, 0.2);
|
|
border-radius: 4px;
|
|
text-align: center;
|
|
}
|
|
|
|
.deposit-info p {
|
|
font-size: 0.875rem;
|
|
color: rgba(160, 180, 200, 0.85);
|
|
}
|
|
|
|
.deposit-info span {
|
|
font-weight: 600;
|
|
color: rgba(100, 200, 150, 1);
|
|
}
|
|
|
|
/* Transaction Result */
|
|
.transaction-result {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
padding: 2rem 1rem;
|
|
flex: 1;
|
|
}
|
|
|
|
.result-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 3rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.transaction-result.success .result-icon {
|
|
background: rgba(100, 200, 150, 0.2);
|
|
border: 3px solid rgba(100, 200, 150, 0.6);
|
|
color: rgba(150, 255, 200, 1);
|
|
box-shadow: 0 0 20px rgba(100, 200, 150, 0.3);
|
|
}
|
|
|
|
.transaction-result.error .result-icon {
|
|
background: rgba(200, 100, 100, 0.2);
|
|
border: 3px solid rgba(200, 100, 100, 0.6);
|
|
color: rgba(255, 150, 150, 1);
|
|
box-shadow: 0 0 20px rgba(200, 100, 100, 0.3);
|
|
}
|
|
|
|
.transaction-result h3 {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
}
|
|
|
|
.transaction-result p {
|
|
font-size: 0.875rem;
|
|
color: rgba(160, 180, 200, 0.85);
|
|
text-align: center;
|
|
}
|
|
|
|
/* Buttons */
|
|
.atm-btn {
|
|
padding: 1rem;
|
|
background: rgba(20, 30, 45, 0.7);
|
|
border: 1px solid rgba(100, 150, 200, 0.4);
|
|
border-radius: 4px;
|
|
color: rgba(200, 220, 240, 0.95);
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.atm-btn:hover {
|
|
background: rgba(30, 45, 70, 0.9);
|
|
border-color: rgba(150, 200, 255, 0.7);
|
|
box-shadow:
|
|
0 0 15px rgba(100, 150, 200, 0.2),
|
|
inset 0 0 20px rgba(100, 150, 200, 0.05);
|
|
}
|
|
|
|
.atm-btn-primary {
|
|
background: rgba(100, 150, 200, 0.2);
|
|
border-color: rgba(100, 150, 200, 0.5);
|
|
}
|
|
|
|
.atm-btn-primary:hover {
|
|
background: rgba(100, 150, 200, 0.3);
|
|
border-color: rgba(150, 200, 255, 0.7);
|
|
}
|
|
|
|
.atm-btn-secondary {
|
|
background: rgba(200, 150, 100, 0.2);
|
|
border-color: rgba(200, 150, 100, 0.4);
|
|
}
|
|
|
|
.atm-btn-secondary:hover {
|
|
background: rgba(200, 150, 100, 0.3);
|
|
border-color: rgba(255, 200, 150, 0.6);
|
|
}
|
|
|
|
.atm-btn-full {
|
|
background: rgba(100, 200, 150, 0.2);
|
|
border-color: rgba(100, 200, 150, 0.4);
|
|
}
|
|
|
|
.atm-btn-full:hover {
|
|
background: rgba(100, 200, 150, 0.3);
|
|
border-color: rgba(150, 255, 200, 0.6);
|
|
}
|
|
|
|
/* Footer */
|
|
.atm-footer {
|
|
padding: 1rem 1.5rem;
|
|
background: rgba(20, 30, 45, 0.9);
|
|
border-top: 2px solid rgba(100, 150, 200, 0.3);
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-text {
|
|
font-size: 0.7rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
color: rgba(100, 150, 200, 0.7);
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.atm-container {
|
|
justify-content: center;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.atm-screen {
|
|
transform: none;
|
|
width: 100%;
|
|
max-width: 450px;
|
|
}
|
|
}
|