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> </head>
<body> <body>
<!--
<header> <header>
<p id="description"> <p id="description">
ZenCard Transactions ZenCard Transactions
</p> </p>
</header> </header>
-->
<form method="get" action="#expenses" id="explore"> <form method="get" action="#expenses" id="explore">
<p> <p>
@ -44,6 +46,10 @@
<section id="expenses"> <section id="expenses">
</section> </section>
<section id="export-button">
<!-- Export button will be added here dynamically -->
</section>
<footer> <footer>
<blockquote> <blockquote>
Follow the money Follow the money
@ -54,7 +60,7 @@
</a> </a>
</p> </p>
</footer> </footer>
<script src="index_fichiers/jspdf.min.js"></script>
<script type="module" src="index_fichiers/app.js"> <script type="module" src="index_fichiers/app.js">
</script> </script>
<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 { header {
text-align: center; text-align: center;
margin-bottom: 2rem; margin-bottom: 2rem;
} }
header h1 { header h1 {
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
} }
header #description { header #description {
margin-top: 0.5rem; margin-top: 0.5rem;
font-style: italic; font-style: italic;
} }
#expenses svg { #expenses svg {
font-size: 24px !important; font-size: 24px !important;
} }
form { form {
margin: auto; margin: auto;
} }
footer { footer {
margin-top: 3rem; margin-top: 3rem;
padding-top: 1.5rem; padding-top: 1.5rem;
padding-bottom: 1.5rem; padding-bottom: 1.5rem;
margin-bottom: 3rem; 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 { footer blockquote {
margin: 0; margin: 0;
font-style: italic; font-style: italic;
} }
footer a, footer a,
footer a:visited { footer a:visited {
text-decoration: none; text-decoration: none;
color: hsl(0, 0%, 50%); color: hsl(0, 0%, 50%);
} }
footer a:hover { 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;
} }