better links

This commit is contained in:
rimu 2024-01-26 09:37:05 +13:00
parent 31f384377a
commit 8e93ff9f51
3 changed files with 28 additions and 1 deletions

View file

@ -239,7 +239,7 @@ def save_post(form, post: Post):
if file_ext.lower() == '.heic': if file_ext.lower() == '.heic':
register_heif_opener() register_heif_opener()
#Image.MAX_IMAGE_PIXELS = 89478485 Image.MAX_IMAGE_PIXELS = 89478485
# resize if necessary # resize if necessary
img = Image.open(final_place) img = Image.open(final_place)

View file

@ -401,6 +401,18 @@ body {
font-size: 0.95rem; font-size: 0.95rem;
} }
a {
text-decoration: none;
border: solid 2px transparent;
}
#outer_container a:not(.btn):hover, footer a:not(.btn):hover {
text-decoration: underline;
}
#outer_container a:not(.btn):active, footer a:not(.btn):active {
border: dotted 2px #0A5CA0;
}
div.navbar { div.navbar {
border-bottom: 1px solid rgba(0, 40, 100, 0.12); border-bottom: 1px solid rgba(0, 40, 100, 0.12);
min-height: 60px; min-height: 60px;

View file

@ -8,6 +8,21 @@ body {
font-size: 0.95rem; font-size: 0.95rem;
} }
a {
text-decoration: none;
border: solid 2px transparent;
}
#outer_container, footer {
a:not(.btn):hover {
text-decoration: underline;
}
a:not(.btn):active {
border: dotted 2px #0A5CA0;
}
}
div.navbar { div.navbar {
border-bottom: 1px solid rgba(0, 40, 100, 0.12); border-bottom: 1px solid rgba(0, 40, 100, 0.12);
min-height: 60px; min-height: 60px;