forked from Yug2920/Expense-Tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (91 loc) · 1.99 KB
/
style.css
File metadata and controls
104 lines (91 loc) · 1.99 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
/* static/style.css */
body {
background-color: #121212; /* Very dark background */
color: #E0E0E0; /* Light gray text */
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
width: 90%;
max-width: 1000px;
margin: 20px auto;
padding: 20px;
background-color: #1E1E1E; /* Slightly lighter dark container */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
header {
background-color: #000000; /* Pure black header */
padding: 15px 0;
text-align: center;
border-radius: 8px 8px 0 0;
}
header h1 {
margin: 0;
color: #4CAF50; /* Green highlight for the title */
}
/* Forms and Inputs */
input[type="text"], input[type="number"], select {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #333;
border-radius: 4px;
background-color: #2D2D2D;
color: #E0E0E0;
width: 100%;
box-sizing: border-box;
}
button {
background-color: #4CAF50; /* Green button */
color: white;
padding: 10px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}
button:hover {
background-color: #45a049;
}
/* Table Style */
.transaction-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
.transaction-table th, .transaction-table td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #333;
}
.transaction-table th {
background-color: #000000;
color: #4CAF50;
}
/* Wallet/Balance Display */
.wallet-box {
padding: 20px;
background-color: #000000;
border-radius: 8px;
margin-bottom: 20px;
text-align: center;
border: 1px solid #4CAF50;
}
.wallet-box h3 {
margin-top: 0;
color: #E0E0E0;
}
.wallet-box p {
font-size: 2em;
font-weight: bold;
color: #4CAF50; /* Highlight the balance in green */
}
/* Specific Row Colors */
.income-row {
color: #4CAF50; /* Green */
}
.expense-row {
color: #FF6347; /* Tomato/Red */
}