We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63b24d3 commit 10c8532Copy full SHA for 10c8532
components/site-nav.webc
@@ -13,6 +13,8 @@
13
<a href="remember-the-human.webc">Remember The Human</a>
14
|
15
<a webc:for="item of socialMediaLinks" target="_blank" @text="item.name" :href="item.url"></a>
16
+
17
+ <a href="https://david.wes.st" target="_blank" class="hidden-link" rel="nofollow noopener noreferrer">電子随筆</a>
18
</nav>
19
20
<style webc:scoped>
layouts/style/base.css
@@ -51,6 +51,19 @@ main {
51
margin: 0 auto;
52
}
53
54
+/*
55
+ Links
56
+*/
57
58
+.hidden-link {
59
+ opacity: 0;
60
+ transition: opacity 0.3s ease-in-out;
61
+}
62
63
+.hidden-link:hover {
64
+ opacity: 1;
65
66
67
68
69
/*
0 commit comments