nav fixes and minor adjustments
This commit is contained in:
parent
d79e64d0fc
commit
7768f63812
7 changed files with 21 additions and 14 deletions
|
@ -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>
|
||||
</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 class="menu-item">
|
||||
<a href="#" class="submenu-toggle" onclick="toggleSubmenu(event)">
|
||||
|
@ -93,10 +93,9 @@
|
|||
</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;">
|
||||
<i class="ph ph-rss"></i>
|
||||
</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>
|
||||
<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>
|
||||
</div>
|
||||
</nav>
|
|
@ -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)
|
||||
|
||||
### milestones
|
||||
- **2024.09.26**: 1024 views, or 1 kibiview :3
|
||||
- **2024.09.17**: 1000 views
|
||||
- **2024.08.11**: 900 views
|
||||
- **2024.08.05**: 800 views
|
||||
|
|
|
@ -3,7 +3,7 @@ layout: 2col
|
|||
title: my fridge
|
||||
permalink: /fridge
|
||||
menu: art
|
||||
menu-title: my fridge
|
||||
menu-title: fridge
|
||||
show_footer: true
|
||||
imgurl: "/img/fridge/"
|
||||
thumbsurl: "/img/thumbs/fridge/"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
layout: 2col
|
||||
title: games
|
||||
permalink: /games/
|
||||
menu: games
|
||||
menu: interest
|
||||
menu-title: games
|
||||
show_footer: true
|
||||
toc: true
|
||||
|
|
|
@ -3,7 +3,7 @@ layout: 2col
|
|||
title: my rkgk
|
||||
permalink: /rkgk
|
||||
menu: art
|
||||
menu-title: my rkgk
|
||||
menu-title: rkgk
|
||||
show_footer: true
|
||||
imgurl: "/img/rkgk/"
|
||||
thumbsurl: "/img/thumbs/rkgk/"
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
title: "site update"
|
||||
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.
|
15
style.css
15
style.css
|
@ -130,6 +130,10 @@ nav a:hover:not(.active) {
|
|||
background-color: var(--bgSelect);
|
||||
}
|
||||
|
||||
.menu-toggle {
|
||||
color: var(--linkColor)
|
||||
}
|
||||
|
||||
.menu-toggle, .menu {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
@ -143,19 +147,22 @@ nav a:hover:not(.active) {
|
|||
}
|
||||
}
|
||||
|
||||
nav-icon {
|
||||
.nav-icon {
|
||||
display: flex;
|
||||
justify-content:center;
|
||||
}
|
||||
|
||||
nav-icon i {
|
||||
.nav-icon i {
|
||||
padding: 8px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 700px) {
|
||||
nav-icon {
|
||||
display: block;
|
||||
.menu-toggle {
|
||||
padding-top: 2rem;
|
||||
}
|
||||
.nav-icon {
|
||||
padding: .5rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue