aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorPedram Ashofteh Ardakani <pedramardakani@pm.me>2020-05-07 02:05:06 +0430
committerPedram Ashofteh Ardakani <pedramardakani@pm.me>2020-05-07 02:07:17 +0430
commite03ae32b59b5a6050912dfec173a584b84f946f2 (patch)
treeafcea68a61ef8425f5cde79db3f0b42f798d743a /index.html
parentf9aa40e0d79237ed2dd547340e3c221a35264e0a (diff)
Fix `Git` button and the `hamburger` menu label
* The `hamburger` label is not showing properly in different browsers. Maybe that specific html unicode is not supported in all browsers. I used a trick to fix this issue using the pipe character `|` ;-) You could read about that here too: https://stackoverflow.com/a/61645811/6474744 * The `down-arrow` unicode also did not work as expected through some browsers. It was decided to remove this label totally. Maybe later we can adopt using `standard` unicode html characters that are `known` to be widely used across various browsers in different platforms.
Diffstat (limited to 'index.html')
-rwxr-xr-xindex.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.html b/index.html
index 7f6d784..ac98f41 100755
--- a/index.html
+++ b/index.html
@@ -51,12 +51,12 @@
<header role="banner">
<!-- global navigation -->
<nav role="navigation" id="nav-hamburger-wrapper">
- <label for="nav-hamburger-input">&#9776;</label>
<input type="checkbox" id="nav-hamburger-input"/>
+ <label for="nav-hamburger-input">|||</label>
<div id="nav-hamburger-items" class="button">
<a href="index.html">Home</a>
<a href="about.html">About</a>
- <a href="http://git.maneage.org/project.git/">&#10515; Git</a>
+ <a href="http://git.maneage.org/project.git/">Git</a>
<a href="tutorial.html">Tutorial</a>
</div>
</nav>