nav fixes and minor adjustments

This commit is contained in:
onomanapeia 2024-09-26 17:23:15 -05:00
parent d79e64d0fc
commit 7768f63812
7 changed files with 21 additions and 14 deletions

View file

@ -3,7 +3,7 @@
<a href="/" title="picrew" style="padding: 0;"><img id="randomImage" src="{% link /img/picrew/000.png %}" alt="mana's pfp" loading="eager"></a> <a href="/" title="picrew" style="padding: 0;"><img id="randomImage" src="{% link /img/picrew/000.png %}" alt="mana's pfp" loading="eager"></a>
</profile-img> </profile-img>
<div onclick="myFunction()" class="menu-toggle">menu <i class="ph ph-list"></i></div> <div onclick="myFunction()" class="menu-toggle">menu <i class="ph ph-list" style="font-size: 1.25em;"></i></div>
<div id="myLinks" class="menu"> <div id="myLinks" class="menu">
<div class="menu-item"> <div class="menu-item">
<a href="#" class="submenu-toggle" onclick="toggleSubmenu(event)"> <a href="#" class="submenu-toggle" onclick="toggleSubmenu(event)">
@ -93,10 +93,9 @@
</div> </div>
</div> </div>
</div> </div>
<div class=nav-icon>
<a href="/atom.xml" aria-label="RSS feed" title="RSS feed" style="text-decoration: none;"><i class="ph ph-rss" style="font-size: 1.45em;"></i></a>
<a href="/atom.xml" aria-label="RSS feed" title="RSS feed" style="text-decoration: none;"> <script src="//counter1.fc2.com/counter.php?id=39521789&main=1"></script><noscript><img src="//counter1.fc2.com/counter_img.php?id=39521789&main=1" alt="fc2 counter"></noscript>
<i class="ph ph-rss"></i> </div>
</a>
<script src="//counter1.fc2.com/counter.php?id=39521789&main=1"></script><noscript><img src="//counter1.fc2.com/counter_img.php?id=39521789&main=1" alt="fc2 counter"></noscript>
</nav> </nav>

View file

@ -31,6 +31,7 @@ if you'd like to link to me, I've provided the following buttons! if you do, [le
![peach moon button animated](/img/peachmoon2.gif) ![peach moon button animated](/img/peachmoon2.gif)
### milestones ### milestones
- **2024.09.26**: 1024 views, or 1 kibiview :3
- **2024.09.17**: 1000 views - **2024.09.17**: 1000 views
- **2024.08.11**: 900 views - **2024.08.11**: 900 views
- **2024.08.05**: 800 views - **2024.08.05**: 800 views

View file

@ -3,7 +3,7 @@ layout: 2col
title: my fridge title: my fridge
permalink: /fridge permalink: /fridge
menu: art menu: art
menu-title: my fridge menu-title: fridge
show_footer: true show_footer: true
imgurl: "/img/fridge/" imgurl: "/img/fridge/"
thumbsurl: "/img/thumbs/fridge/" thumbsurl: "/img/thumbs/fridge/"

View file

@ -2,7 +2,7 @@
layout: 2col layout: 2col
title: games title: games
permalink: /games/ permalink: /games/
menu: games menu: interest
menu-title: games menu-title: games
show_footer: true show_footer: true
toc: true toc: true

View file

@ -3,7 +3,7 @@ layout: 2col
title: my rkgk title: my rkgk
permalink: /rkgk permalink: /rkgk
menu: art menu: art
menu-title: my rkgk menu-title: rkgk
show_footer: true show_footer: true
imgurl: "/img/rkgk/" imgurl: "/img/rkgk/"
thumbsurl: "/img/thumbs/rkgk/" thumbsurl: "/img/thumbs/rkgk/"

View file

@ -2,4 +2,4 @@
title: "site update" title: "site update"
date: 2024-09-26 date: 2024-09-26
--- ---
finally finished migrating the site to [jekyll](https://jekyllrb.com/) from zola! added some new art to the [fridge]({% link _pages/fridge.md %}). took a bunch of new [quizzes]({% link _pages/quiz.md %}) updated [about]({% link _pages/about.md %}) to reflect the migration to jekyll, and split the [about me]({% link _pages/aboutme.md %}) section into its own page. added some [links]({% link _pages/links.md %}) and a page detailing my [plans]({% link _pages/plans.md %}) for this website. finally finished migrating the site to [jekyll](https://jekyllrb.com/) from zola! added some new art to the [fridge]({% link _pages/fridge.md %}). took a bunch of new [quizzes]({% link _pages/quiz.md %}). updated [about]({% link _pages/about.md %}) to reflect the migration to jekyll, and split the [about me]({% link _pages/aboutme.md %}) section into its own page. added some [links]({% link _pages/links.md %}) and a page detailing my [plans]({% link _pages/plans.md %}) for this website.

View file

@ -130,6 +130,10 @@ nav a:hover:not(.active) {
background-color: var(--bgSelect); background-color: var(--bgSelect);
} }
.menu-toggle {
color: var(--linkColor)
}
.menu-toggle, .menu { .menu-toggle, .menu {
text-decoration: none; text-decoration: none;
} }
@ -143,19 +147,22 @@ nav a:hover:not(.active) {
} }
} }
nav-icon { .nav-icon {
display: flex; display: flex;
justify-content:center; justify-content:center;
} }
nav-icon i { .nav-icon i {
padding: 8px; padding: 8px;
vertical-align: middle; vertical-align: middle;
} }
@media screen and (max-width: 700px) { @media screen and (max-width: 700px) {
nav-icon { .menu-toggle {
display: block; padding-top: 2rem;
}
.nav-icon {
padding: .5rem;
} }
} }