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