add readme link

This commit is contained in:
Cade Scroggins
2022-11-16 14:17:26 -08:00
parent 55837d5fea
commit e165b23b46
+26
View File
@@ -207,6 +207,19 @@
color: var(--color-text); color: var(--color-text);
} }
.help {
bottom: 0;
color: var(--color-text-subtle);
display: none;
padding: var(--space-1) var(--space-2);
position: fixed;
right: 0;
}
.readme {
color: var(--color-text);
}
@media (min-width: 500px) { @media (min-width: 500px) {
.commands { .commands {
grid-template-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr);
@@ -217,6 +230,10 @@
.commands { .commands {
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr);
} }
.help {
display: block;
}
} }
@media (min-width: 900px) { @media (min-width: 900px) {
@@ -233,6 +250,15 @@
</style> </style>
<nav> <nav>
<menu class="commands"></menu> <menu class="commands"></menu>
<p class="help">
First time here?
<a
class="readme"
href="https://read.xvvvyz.xyz/xvvvyz/tilde/main/README.md"
>
README.md
</a>
</p>
</nav> </nav>
</template> </template>