Spaces:
Running
Running
Update balance.html
#1
by Humbledrious - opened
- balance.html +37 -3
balance.html
CHANGED
|
@@ -2,13 +2,47 @@
|
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
-
<
|
|
|
|
|
|
|
| 6 |
<style>
|
| 7 |
-
body {
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
</style>
|
| 10 |
</head>
|
| 11 |
<body>
|
|
|
|
|
|
|
|
|
|
| 12 |
<div class="balance">₱1,000,000,000.00</div>
|
|
|
|
|
|
|
| 13 |
</body>
|
| 14 |
</html>
|
|
|
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Balance Demo</title>
|
| 7 |
+
|
| 8 |
<style>
|
| 9 |
+
body {
|
| 10 |
+
margin: 0;
|
| 11 |
+
height: 100vh;
|
| 12 |
+
display: flex;
|
| 13 |
+
justify-content: center;
|
| 14 |
+
align-items: center;
|
| 15 |
+
background: #f5f5f5;
|
| 16 |
+
font-family: Arial, sans-serif;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
.balance-card {
|
| 20 |
+
background: white;
|
| 21 |
+
padding: 30px;
|
| 22 |
+
border-radius: 15px;
|
| 23 |
+
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
| 24 |
+
text-align: center;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.title {
|
| 28 |
+
font-size: 20px;
|
| 29 |
+
color: #666;
|
| 30 |
+
margin-bottom: 10px;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
.balance {
|
| 34 |
+
font-size: 40px;
|
| 35 |
+
font-weight: bold;
|
| 36 |
+
color: green;
|
| 37 |
+
}
|
| 38 |
</style>
|
| 39 |
</head>
|
| 40 |
<body>
|
| 41 |
+
|
| 42 |
+
<div class="balance-card">
|
| 43 |
+
<div class="title">Available Balance</div>
|
| 44 |
<div class="balance">₱1,000,000,000.00</div>
|
| 45 |
+
</div>
|
| 46 |
+
|
| 47 |
</body>
|
| 48 |
</html>
|