Spaces:
Runtime error
Runtime error
Update static/style.css
Browse files- static/style.css +87 -88
static/style.css
CHANGED
|
@@ -1,88 +1,87 @@
|
|
| 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 |
-
form button {
|
| 45 |
-
background
|
| 46 |
-
color:
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
}
|
| 50 |
-
|
| 51 |
-
form button:hover {
|
| 52 |
-
background
|
| 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 |
-
}
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 3 |
+
background: #1e1e2f;
|
| 4 |
+
color: #eee;
|
| 5 |
+
margin: 0;
|
| 6 |
+
padding: 20px;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
.container {
|
| 10 |
+
max-width: 900px;
|
| 11 |
+
margin: auto;
|
| 12 |
+
background: #2a2a40;
|
| 13 |
+
padding: 30px;
|
| 14 |
+
border-radius: 12px;
|
| 15 |
+
box-shadow: 0 0 20px rgba(0,0,0,0.3);
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
h1, h2 {
|
| 19 |
+
text-align: center;
|
| 20 |
+
color: #00adb5;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
.expense-form {
|
| 24 |
+
display: flex;
|
| 25 |
+
gap: 10px;
|
| 26 |
+
flex-wrap: wrap;
|
| 27 |
+
margin-bottom: 20px;
|
| 28 |
+
justify-content: center;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.expense-form input, .expense-form button {
|
| 32 |
+
padding: 10px;
|
| 33 |
+
border: none;
|
| 34 |
+
border-radius: 6px;
|
| 35 |
+
font-size: 16px;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
.expense-form input {
|
| 39 |
+
flex: 1;
|
| 40 |
+
background: #3a3a55;
|
| 41 |
+
color: #fff;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.expense-form button {
|
| 45 |
+
background: #00adb5;
|
| 46 |
+
color: #fff;
|
| 47 |
+
cursor: pointer;
|
| 48 |
+
transition: background 0.2s ease-in-out;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
.expense-form button:hover {
|
| 52 |
+
background: #009ba8;
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
table {
|
| 56 |
+
width: 100%;
|
| 57 |
+
border-collapse: collapse;
|
| 58 |
+
margin-top: 30px;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
thead {
|
| 62 |
+
background: #393963;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
th, td {
|
| 66 |
+
padding: 12px;
|
| 67 |
+
text-align: center;
|
| 68 |
+
border-bottom: 1px solid #555;
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
.delete-btn {
|
| 72 |
+
background: #ff5252;
|
| 73 |
+
color: white;
|
| 74 |
+
padding: 5px 10px;
|
| 75 |
+
border: none;
|
| 76 |
+
border-radius: 6px;
|
| 77 |
+
cursor: pointer;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
.delete-btn:hover {
|
| 81 |
+
background: #e63946;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
.chart-section {
|
| 85 |
+
max-width: 400px;
|
| 86 |
+
margin: 20px auto;
|
| 87 |
+
}
|
|
|