-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwallet_style.css
More file actions
139 lines (121 loc) · 2.49 KB
/
wallet_style.css
File metadata and controls
139 lines (121 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* Globale Stile */
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background-color: #f0f2f5;
color: #333;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
padding: 20px;
margin: 0;
}
.wallet-container {
width: 100%;
max-width: 400px;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
padding: 30px;
}
/* Header */
header {
text-align: center;
margin-bottom: 25px;
}
header h1 {
color: #2c3e50;
font-size: 1.8em;
margin-bottom: 5px;
}
.wallet-id {
color: #7f8c8d;
font-size: 0.8em;
}
/* Balance Card */
.balance-card {
background-image: linear-gradient(135deg, #3498db, #2980b9); /* AYA Blau-Töne */
color: #ffffff;
padding: 25px;
border-radius: 15px;
margin-bottom: 25px;
text-align: center;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.balance-card .label {
font-size: 0.9em;
opacity: 0.8;
margin: 0 0 5px 0;
}
.total-balance {
font-size: 2.2em;
font-weight: 700;
margin-bottom: 20px;
}
.token-balance {
display: flex;
justify-content: space-between;
padding: 5px 0;
border-top: 1px solid rgba(255, 255, 255, 0.2);
font-size: 1em;
}
/* Actions Buttons */
.actions {
display: flex;
justify-content: space-between;
margin-bottom: 30px;
}
.action-button {
flex-grow: 1;
margin: 0 5px;
padding: 12px 15px;
border: none;
border-radius: 10px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s;
}
.send {
background-color: #e74c3c; /* Rot für Senden/Ausgabe */
color: white;
}
.receive {
background-color: #2ecc71; /* Grün für Empfangen/Eingabe */
color: white;
}
.swap {
background-color: #f1c40f; /* Gelb für Tauschen */
color: #333;
}
.action-button:hover {
opacity: 0.9;
}
/* Transaction History */
.transaction-history h3 {
color: #2c3e50;
margin-top: 0;
border-bottom: 1px solid #ecf0f1;
padding-bottom: 10px;
}
.transaction-list {
list-style: none;
padding: 0;
}
.transaction-list li {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #ecf0f1;
font-size: 0.95em;
}
.transaction-list li:last-child {
border-bottom: none;
}
.type.in {
color: #27ae60; /* Dunkles Grün */
font-weight: 600;
}
.type.out {
color: #c0392b; /* Dunkles Rot */
font-weight: 600;
}