Skip to content

Commit

Permalink
Fix focus state + Code Meme
Browse files Browse the repository at this point in the history
- fix focus state and add background color
- add code meme
  • Loading branch information
munusshih committed Sep 13, 2024
1 parent 411995d commit af91de2
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 3 deletions.
45 changes: 44 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,50 @@
<script src="script.js" defer></script>
</head>

<!-- mix blend mode would break when using z-index or translate -->
<!--
__ __ _ _ _ _ _ _
| \/ | ___ | \ | (_| | | | (_)
| \ / |_ _ _ __ _ _ ___ ( _ ) | \| |_| | _| |_ __ _ _ __ _
| |\/| | | | | '_ \| | | / __| / _ \/\ | . ` | | |/ | __/ _` | '__| |
| | | | |_| | | | | |_| \__ \ | (_> < | |\ | | <| || (_| | | | |
|_| |_|\__,_|_| |_|\__,_|___/ \___/\/ |_| \_|_|_|\_\\__\__,_|_| |_|
______ ______ ______
|______|______|______|
____ _
/ __ \ | |
| | | | ___ _ __ ___ | |
| | | |/ _ \| '_ \/ __| | |
| |__| | (_) | |_) \__ \ |_|
\____/ \___/| .__/|___/ (_)
| |
|_|
__ __ __ _
\ \ / / / _| | |
\ \_/ ___ _ _ | |_ ___ _ _ _ __ __| |
\ / _ \| | | | | _/ _ \| | | | '_ \ / _` |
| | (_) | |_| | | || (_) | |_| | | | | (_| |
|_|\___/ \__,_| |_| \___/ \__,_|_| |_|\__,_|
____ _
/ __ \ | |
| | | |_ _ _ __ ___ ___ __| | ___
| | | | | | | '__| / __/ _ \ / _` |/ _ \
| |__| | |_| | | | (_| (_) | (_| | __/
\____/ \__,_|_| \___\___/ \__,_|\___|
-->

<body>
<aside id="about" class="display-none">
Expand Down
4 changes: 2 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ nav {
}

.left-side {
&:hover {
&:hover, &:focus-visible {
background-color: var(--munus-color);
color: white;
cursor: pointer;
Expand All @@ -86,7 +86,7 @@ nav {
}

.right-side {
&:hover {
&:hover, &:focus-visible {
background-color: var(--niktari-color);
color: white;
cursor: pointer;
Expand Down

0 comments on commit af91de2

Please sign in to comment.