all repos — piggy @ main

Dead simple finance manager in Go, HTML and JS.

static/css/styles.css (view raw)

 1body {
 2    font-family: Arial, sans-serif;
 3    margin: 20px auto;
 4    background-color: beige;
 5    max-width: 800px;
 6}
 7
 8nav > a:link, nav > a:visited {
 9    color: blue;
10    margin-right: 10px;
11}
12  
13nav > a:hover, nav > a:active {
14    text-decoration: dotted;
15}
16
17#main-container {
18    margin-top: 20px;
19}
20
21#main-container > input, #edit-container > label {
22    margin-right: 20px;
23}
24
25.record, .entry, .subentry {
26    margin-top: 20px;
27    background-color: rgba(0, 0, 0, 0.05);
28}
29
30label {
31    display: inline-block;
32}
33
34thead {
35    font-weight: bold;
36}
37
38table {
39    width: 100%;
40}
41
42table td, table th {
43    padding: 10px; /* Adjust the padding value as needed */
44}
45
46#buttons {
47    display: block;
48    margin: 20px auto;
49    text-align: center;
50}
51
52button {
53    padding: 10px 20px;
54    font-size: 16px;
55}