UI updates in progress.

This commit is contained in:
th3r00t
2023-03-11 09:46:49 -05:00
parent b38f7cc919
commit c1c7b869ef
4 changed files with 20 additions and 1 deletions

View File

@@ -23,6 +23,8 @@ $navbar-item-color: $white
$navbar-item-hover-background-color: $ps-color-secondary
$navbar-dropdown-background-color: $ps-color-primary-trans
$navbar-dropdown-item-hover-color: $ps-color-background !important
$footer-background-color: $ps-color-primary-trans
$footer-padding: 0.5rem 0.5rem
//$navbar-dropdown-item-hover-background-color: $background !default
//$navbar-dropdown-item-active-color: $link !default
//$navbar-dropdown-item-active-background-color: $background !default

View File

@@ -1,2 +1,18 @@
<footer class="footer is-dark">
<a href="https://python.org">
<img
src="{{ url_for('static', path='images/python-logo-transparent.svg') }}"
alt="Powered by Python"
width="128"
height="24">
</a>
<a href="https://bulma.io">
<img
src="https://bulma.io/images/made-with-bulma--white.png"
alt="Made with Bulma"
width="128"
height="24">
</a>
</footer>
</body>
</html>

View File

@@ -5,5 +5,6 @@
<link href="{{ url_for('static', path='styles/pyShelf.css') }}" rel="stylesheet">
<script src="{{ url_for('static', path='script/jquery-3.6.1.js') }}" rel="script"></script>
<script src="{{ url_for('static', path='script/bulma-helper.js') }}" rel="script"></script>
<script src="{{ url_for('static', path='script/pyshelf.js') }}" rel="script"></script>
</head>
<body>

View File

@@ -1,7 +1,7 @@
<!doctype html>
{% include 'header.html' %}
{% include 'navigation.html' %}
<section>
<section id="master">
{{ package.test }}
</section>
{% include 'footer.html' %}