Skip to content
Snippets Groups Projects
Verified Commit 6ef924d5 authored by Georg Krause's avatar Georg Krause
Browse files

Overwrite wrong bulma settings

parent 4fd9eee6
No related branches found
No related tags found
1 merge request!15Resolve "Improve pagination"
Pipeline #18788 passed
...@@ -126,6 +126,7 @@ aside { ...@@ -126,6 +126,7 @@ aside {
text-align: center; text-align: center;
padding-top: 8%; padding-top: 8%;
background-size: cover; background-size: cover;
box-sizing: content-box;
} }
aside a { color:var(--color-background-main); text-decoration:none; } aside a { color:var(--color-background-main); text-decoration:none; }
aside a:visited { color:var(--color-background-main); text-decoration:none; } aside a:visited { color:var(--color-background-main); text-decoration:none; }
...@@ -208,6 +209,10 @@ aside > h2 { ...@@ -208,6 +209,10 @@ aside > h2 {
margin: auto; margin: auto;
} }
.logo-container h1 {
font-size: 21px;
}
/*--------Responsive------------*/ /*--------Responsive------------*/
@media (max-width: 800px) { @media (max-width: 800px) {
......
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
{% if LINKS %} {% if LINKS %}
<h2 class="blog_roll_link">LINKS</h2> <h2 class="blog_roll_link">LINKS</h2>
<ul class="navbar"> <ul>
{% for name, link in LINKS %} {% for name, link in LINKS %}
<li><a href="{{ link }}">{{ name }}</a></li> <li><a href="{{ link }}">{{ name }}</a></li>
{% endfor %} {% endfor %}
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
{% if DISPLAY_CATEGORIES_ON_MENU and categories %} {% if DISPLAY_CATEGORIES_ON_MENU and categories %}
<h2 class="blog_roll_link">Categories</h2> <h2 class="blog_roll_link">Categories</h2>
<ul class="navbar"> <ul>
{% for cat, null in categories %} {% for cat, null in categories %}
<li{% if cat == category %} class="active"{% endif %}><a <li{% if cat == category %} class="active"{% endif %}><a
href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li> href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment