diff --git a/library/static/css/feather.css b/library/static/css/feather.css new file mode 100644 index 0000000..8224b6b --- /dev/null +++ b/library/static/css/feather.css @@ -0,0 +1,9 @@ +.feather { + width: 24px; + height: 24px; + stroke: currentColor; + stroke-width: 2; + stroke-linecap: round; + stroke-linejoin: round; + fill: none; +} diff --git a/library/static/css/style.css b/library/static/css/style.css index a5b6d78..aa63b84 100644 --- a/library/static/css/style.css +++ b/library/static/css/style.css @@ -13,15 +13,6 @@ body:after { text-align: center; } -#cloud { - overflow: hidden; - width: 1px; height: 1px; - transform: translate(-100%, -100%); - border-radius: 50%; - z-index: -1; - position: fixed; -} - @font-face { font-family: "libreBaskerville"; @@ -33,7 +24,7 @@ body:after { position: relative; color: #FFFFFF; text-shadow: 2px 2px #004225; - font-size: 52px; + font-size: 3em; text-align: center; font-family: libreBaskerville; mix-blend-mode: difference; @@ -164,11 +155,23 @@ td { .error{ color: #ff1111; } + a:link { text-decoration: none; } a:visited { text-decoration: none; } a:hover { text-decoration: none; } a:active { text-decoration: none; } +div#auth_buttons{ + position: fixed; + top: 0.7em; + right: 0.7em; + display:flex; + gap: 1em; + flex-direction: row; + justify-content: center; + align-items: center; +} + @media only screen and (min-device-width: 320px) and (max-device-width: 480px) { #library { text-align: left; @@ -179,12 +182,3 @@ a:active { text-decoration: none; } margin: 3em 1em 1em 1em; } } -div#auth_buttons{ - position: fixed; - top: 0.5em; - right: 0.5em; - display:flex; - flex-direction: row; - justify-content: center; - align-items: center; -} diff --git a/library/static/icons/users-feather-sprite.svg b/library/static/icons/users-feather-sprite.svg new file mode 100644 index 0000000..77c1757 --- /dev/null +++ b/library/static/icons/users-feather-sprite.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/library/templates/base.html b/library/templates/base.html index e45d3d4..ede3d56 100644 --- a/library/templates/base.html +++ b/library/templates/base.html @@ -8,6 +8,7 @@ + @@ -15,7 +16,6 @@ -

{{title}}

{% block main %} {% endblock main %} diff --git a/library/templates/index.html b/library/templates/index.html index db76139..42f41dc 100644 --- a/library/templates/index.html +++ b/library/templates/index.html @@ -8,18 +8,27 @@ {% if not current_user.is_authenticated %}
- + + + + Sign in
- + + + + Register
{% else %}
- + + + + Sign out
{% endif %} @@ -27,7 +36,6 @@
{% for id, pubinfo in publications.items() %}
- {%if pubinfo["Image"]%} @@ -43,11 +51,10 @@ - +
Title:{{ pubinfo["Title"] }}{{ pubinfo["Title"] }}
-
{% endfor%}