Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

visually mark certain "functions" as "planned for future release" #37

Merged
merged 1 commit into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 33 additions & 14 deletions docs/_pages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ excerpt: "**For all those who like handouts with page numbers and running header
<img src="assets/images/functions/mascot.png" alt="we have a sweet mascot" class="img-half">
<h5>Add Personal Touch</h5>
<p>Who said PDF documents couldn't have a personal touch? Thanx to <a href="https://www.sketchnotes.tech/">Lisa, @teapot418</a>.</p>

<!-- Overlay and Badge -->
<div class="not-yet-implemented-overlay">
<span class="badge">not yet implemented</span>
</div>
</div>

<div class="box box--primary box-third">
Expand All @@ -82,29 +87,43 @@ excerpt: "**For all those who like handouts with page numbers and running header
<h5>Evenify</h5>
<p>Make all documents have an even number of pages by adding a blank page to files with odd page count.</p>
</div>
<div class="box box--primary box-third">
<img src="assets/images/functions/privacy.png" alt="privacy" class="img-half">
<h5>Privacy</h5>
<p>We value your privacy: Your documents are yours, forever. We do neither collect data nor retain any information about your documents.</p>
</div>

<div class="box box--primary box-third">
<img src="assets/images/functions/multi-language.png" alt="multi-language" class="img-half">
<h5>Multi-Language</h5>
<p>Handle a number of natural languages, starting with English (EN)m German (DE), French (FR) and Spanish (ES).</p>
</div>
<div class="box box--primary box-third">
<img src="assets/images/functions/privacy.png" alt="privacy" class="img-half">
<h5>Privacy</h5>
<p>We value your privacy: Your documents are yours, forever. We do neither collect data nor retain any information about your documents.</p>
</div>

<div class="box box--primary box-third">
<img src="assets/images/functions/multi-language.png" alt="multi-language" class="img-half">
<h5>Multi-Language</h5>
<p>Handle a number of natural languages, starting with English (EN)m German (DE), French (FR) and Spanish (ES).</p>
</div>

<div class="box box--primary box-third">
<img src="assets/images/functions/toc.png" alt="table of contents" class="img-half">
<h5>Table of Contents</h5>
<p>Create table-of-contents with document names, their chapter number and starting page number.</p>

<!-- Overlay and Badge -->
<div class="not-yet-implemented-overlay">
<span class="badge">not yet implemented</span>
</div>

<div class="box box--primary box-third">
<img src="assets/images/functions/merge.png" alt="merge documents" class="img-half">
<h5>Merge</h5>
<p>Create a single output document from all inputs. The output file name is configurable.</p>
</div>

<div class="box box--primary box-third">
<img src="assets/images/functions/merge.png" alt="merge documents" class="img-half">
<h5>Merge</h5>
<p>Create a single output document from all inputs. The output file name is configurable.</p>

<!-- Overlay and Badge -->
<div class="not-yet-implemented-overlay">
<span class="badge">not yet implemented</span>
</div>
</div>


</div>

</section>
Expand Down
1 change: 1 addition & 0 deletions docs/_sass/oneflow/_boxes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

.box {
border: 1.5px solid black;
position: relative;
border-radius: 5px;
background-color: rgba($primary-color, 0.05);
flex: 1 1 calc(100% - 20px);
Expand Down
36 changes: 35 additions & 1 deletion docs/assets/css/custom-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,38 @@ th, td {

th {
border-bottom: 2px solid black;
}
}







/* NOT YET IMPLEMENTED BOX */

.not-yet-implemented-overlay {
position: absolute;
border-radius: 4px;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(180, 180, 180, 0.4); /
z-index: 2;
}

.not-yet-implemented-overlay .badge {
position: absolute;
top: 20px;
left: 0;
background-color: #ffcc00;
color: #000;
font-weight: bold;
padding: 5px 10px;
border-radius: 5px;
font-size: 14px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transform: rotate(-15deg);
z-index: 3;
}
Loading