Browse Source

Fixes

mistress
Daniel Muckerman 4 years ago
parent
commit
0ef5fec3b6
2 changed files with 15 additions and 1 deletions
  1. +14
    -0
      static/style.css
  2. +1
    -1
      templates/fragments/navbar.j2

+ 14
- 0
static/style.css View File

@ -52,7 +52,21 @@
padding: 20px; padding: 20px;
} }
#article pre {
background-color: #fdf6e3;
color: #657b83;
border-radius: 5px;
padding: 5px;
}
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
#article pre {
background-color: #002b36;
color: #839496;
border-radius: 5px;
padding: 5px;
}
#sidebar { #sidebar {
padding-left: 20px; padding-left: 20px;
background-color: #1a1d20; background-color: #1a1d20;

+ 1
- 1
templates/fragments/navbar.j2 View File

@ -25,7 +25,7 @@
{% else %} {% else %}
<li class="nav-item"> <li class="nav-item">
{% endif %} {% endif %}
<a class="nav-link" href="{{ url_for('archived') }}">Bookmarklet</a>
<a class="nav-link" href="{{ url_for('bookmarklet') }}">Bookmarklet</a>
</li> </li>
</ul> </ul>
<form class="form-inline ml-auto"> <form class="form-inline ml-auto">

Loading…
Cancel
Save