This commit is contained in:
fred 2024-01-05 21:51:41 +01:00
parent e701aa86db
commit f09ef9e226
4 changed files with 796 additions and 414 deletions

View File

@ -10,12 +10,14 @@
</head>
<body>
<!--
<header>
<p id="description">
ZenCard Transactions
</p>
</header>
-->
<form method="get" action="#expenses" id="explore">
<p>
@ -44,6 +46,10 @@
<section id="expenses">
</section>
<section id="export-button">
<!-- Export button will be added here dynamically -->
</section>
<footer>
<blockquote>
Follow the money
@ -54,7 +60,7 @@
</a>
</p>
</footer>
<script src="index_fichiers/jspdf.min.js"></script>
<script type="module" src="index_fichiers/app.js">
</script>
<script>

File diff suppressed because it is too large Load Diff

286
earth/g1gate/index_fichiers/jspdf.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,57 +1,67 @@
header {
text-align: center;
margin-bottom: 2rem;
text-align: center;
margin-bottom: 2rem;
}
header h1 {
margin-bottom: 0.5rem;
margin-bottom: 0.5rem;
}
header #description {
margin-top: 0.5rem;
font-style: italic;
margin-top: 0.5rem;
font-style: italic;
}
#expenses svg {
font-size: 24px !important;
font-size: 24px !important;
}
form {
margin: auto;
margin: auto;
}
footer {
margin-top: 3rem;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
margin-bottom: 3rem;
margin-top: 3rem;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
margin-bottom: 3rem;
border-top: 2px solid hsl(0, 0%, 95%);
border-top: 2px solid hsl(0, 0%, 95%);
text-align: center;
text-align: center;
}
footer blockquote {
margin: 0;
font-style: italic;
margin: 0;
font-style: italic;
}
footer a,
footer a:visited {
text-decoration: none;
color: hsl(0, 0%, 50%);
text-decoration: none;
color: hsl(0, 0%, 50%);
}
footer a:hover {
text-decoration: underline;
text-decoration: underline;
}
#export-button {
margin-top: 10px;
}
#export-button button {
padding: 8px 12px;
font-size: 14px;
cursor: pointer;
}