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

Add a fixed footer to the interface of the app #125

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
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
8 changes: 8 additions & 0 deletions src/GUI_draft/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@
#
*/

.footer_content {
background-color: #342426;
color: white;
margin: 10px;
padding: 2px;
font-size: 24px;
}

.progression_bar_buttons {
background-color: #eb5e0b;
color: white;
Expand Down
2 changes: 2 additions & 0 deletions src/GUI_draft/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@

<a href="/" class="button secondary">Back to landing page</a>

{% include "footer.html" %}

<p class="callout primary">Note: The idea of this intermediate-interface is to enable someone to navigate through the various views of the interface and provide feedbacks on existing component or non-existing components which would be wished. Keep in mind that it is not how the interface is going to look, we are only focusing on the user interaction now. We'll make it look nice once we agree on the structure</p>

<p class="callout primary">Hint1: if you see VC next to a title it means View-Component, i.e. normally you would see what is inside a view-component directly in this page either in a sub window, a popup window or integrated as a component of the current view, you can click on it to have more information about the view component</p>
Expand Down
5 changes: 5 additions & 0 deletions src/GUI_draft/templates/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<div data-sticky-container>
<div class="grid-x nav">
<p class="footer_content cell">Developed by Reiner Lemoine Institut (RLI) Berlin in colloboration with DGS & PIK. © 2021</p>
</div>
</div>