Compare commits

...

12 Commits

Author SHA1 Message Date
sefaria ee89306e6f release v1.0 2026-06-21 23:32:30 +02:00
sefaria 599896bde0 delete pdf 2026-06-21 23:26:52 +02:00
sefaria 06d87e4e7b test commit 2026-06-21 23:25:39 +02:00
sefaria 1a4396b6db add readme and license 2026-06-21 23:21:18 +02:00
sefaria 73249f7a91 updated template 2026-06-11 23:43:48 +02:00
sefaria 9c37bfb496 change adress-row font to MD UI 2026-06-11 23:41:20 +02:00
sefaria 3960b7255e add more letter-spacing for footer 2026-06-11 23:37:34 +02:00
sefaria f437cdeed1 adjust h1 and folding-marks for Billy 1.0.0 2026-06-11 23:34:50 +02:00
sefaria abb7cccfbd add pdf export example 2026-06-07 22:46:06 +02:00
sefaria f32df93ab8 Adjust footer column width 2026-06-07 22:43:23 +02:00
sefaria 0e284bd6a2 add font-family for h1, consolidate css 2026-06-07 22:39:16 +02:00
sefaria 92ebcb22bb change folding-marks values 2026-06-07 22:04:44 +02:00
4 changed files with 47 additions and 25 deletions
+20
View File
@@ -0,0 +1,20 @@
Copyright (c) HTML5 Boilerplate
Copyright (c) 2026 Lars Winter
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+11
View File
@@ -0,0 +1,11 @@
# Website of Lars Winter
This is the css styling for invoices generated with [Billy](https://usebilly.app/en).
## License
Code in this repository is licensed under the MIT License. See the `LICENSE` file.
## Asset notice
All images, screenshots, logos, trademarks, and project visuals in this repository are excluded from the code license unless explicitly stated otherwise. Such materials are the property of their respective copyright owners and may not be reused, redistributed, or modified without permission.
+14 -23
View File
@@ -13,34 +13,20 @@
--accent-extralight: #FFE7CC; /* total background header */ --accent-extralight: #FFE7CC; /* total background header */
} }
/* Recolor headline, remove bold style, add more letter-spacing */ /* Change font, recolor headline, remove bold style, add more letter-spacing */
h1 { h1 {
color: #ff4500; color: #ff4500;
font-weight: 400; font-weight: 400;
letter-spacing: 0.025em; letter-spacing: 0.025em;
} }
/* Remove bold style, add more letter-spacing */ .address-row, .address-row span {
.footer section small b { font-family: "MD IO"
font-weight: normal; /* or font-weight: 400; */
letter-spacing: 0.025em;
} }
/* Add more letter-spacing */ /* Remove bold style */
.footer section small i { .address-row span, .footer section small span, .footer section small b {
letter-spacing: 0.025em; font-weight: normal !important; /* or font-weight: 400; */
}
/* Remove bold style, add more letter-spacing */
.footer section small span {
font-weight: normal !important; /* or font-weight: 400; */
letter-spacing: 0.025em;
}
/* Remove bold style, add more letter-spacing */
.address-row span {
font-weight: normal !important; /* or font-weight: 400; */
letter-spacing: 0.025em;
} }
/* Disable circled numbers, activate square punctuation and legible forms for MD UI */ /* Disable circled numbers, activate square punctuation and legible forms for MD UI */
@@ -58,10 +44,15 @@ h1 {
color: #121212; color: #121212;
} }
/* Add more letter-spacing */
.footer section small, .footer section small span, .footer section small b, .footer section small i {
letter-spacing: 0.025em;
}
/* Change look of folding-marks */ /* Change look of folding-marks */
.folding-mark { .folding-mark {
width: 2rem; width: 0.2rem;
height: 2rem; height: 0.2rem;
border-radius: 8rem; border-radius: 1rem;
background-color: #ff8c00; background-color: #ff8c00;
} }