diff options
-rw-r--r-- | css/website.css | 10 | ||||
-rw-r--r-- | templates/home.html.twig | 4 | ||||
-rw-r--r-- | templates/page.html.twig | 1 | ||||
-rw-r--r-- | templates/partials/header.html.twig | 5 |
4 files changed, 7 insertions, 13 deletions
diff --git a/css/website.css b/css/website.css index e137342..6d73aa9 100644 --- a/css/website.css +++ b/css/website.css @@ -130,14 +130,8 @@ body { background-color: rgba(0, 0, 0, 0.411); display: flex; flex-direction: row; - border-radius: 500px; gap: 10px; - padding: 8px 20px; -} - -.roundedButton:hover -{ - background-color: rgba(0, 0, 0, 0.788); + margin: 15px 5px; } .transparentButton @@ -153,7 +147,7 @@ body { { flex-wrap: wrap; display: flex; - gap: 15px; + gap: 25px; } /* mobile */ diff --git a/templates/home.html.twig b/templates/home.html.twig index afb2b70..7e5be9f 100644 --- a/templates/home.html.twig +++ b/templates/home.html.twig @@ -17,7 +17,7 @@ </div> </div> <div class=footer> - <div class="transparentButton"> + {# <div class="transparentButton"> <a href="{{page.header.webring.left}}"> <span class="icon">arrow_back</span> </a> @@ -25,7 +25,7 @@ <a href="{{page.header.webring.right}}"> <span class="icon">arrow_forward</span> </a> - </div> + </div> #} </div> </body> </html>
\ No newline at end of file diff --git a/templates/page.html.twig b/templates/page.html.twig index 1291aaf..dc2c9ed 100644 --- a/templates/page.html.twig +++ b/templates/page.html.twig @@ -14,7 +14,6 @@ <div class="center"> <div class="content"> {{ page.content|raw }} - {% include 'partials/navigation.html.twig' %} </div> </div> <div class=footer> diff --git a/templates/partials/header.html.twig b/templates/partials/header.html.twig index 0c02cfe..e19b414 100644 --- a/templates/partials/header.html.twig +++ b/templates/partials/header.html.twig @@ -1,5 +1,5 @@ <div class="header"> - {% if page.header.icon %} + {# {% if page.header.icon %} <span class=icon>{{page.header.icon}}</span> {% else %} <span class=icon>web</span> @@ -13,5 +13,6 @@ </a> {% else %} <span class="icon" style="color:transparent;">web</span> - {% endif %} + {% endif %} #} + {% include 'partials/navigation.html.twig' %} </div>
\ No newline at end of file |