added whole content

This commit is contained in:
Fedor Katurov 2022-11-03 10:38:11 +06:00
parent 07a306a6f4
commit dd104eed49
70 changed files with 5962 additions and 19 deletions

View file

@ -1,6 +1,13 @@
<template>
<nav>
<div :class="$style.section_title">Reference</div>
<div :class="$style.logo">
<NuxtLink to="/">
<div :class="$style.title">Obsidian Garden</div>
<div :class="$style.subtitle">by muerwre</div>
</NuxtLink>
</div>
<div :class="$style.section_title">Cheatsheet</div>
<div v-for="item in parentItems" key="item._path" :class="$style.row">
<LayoutMainMenuRow
@ -30,7 +37,37 @@ const parentItems = navigation.value.filter(
font-size: 1.6rem;
}
.logo {
display: flex;
background: url("~~/assets/svg/logo.svg") no-repeat 50% 50%;
background-size: contain;
padding: 30px 0 15px;
text-shadow: var(--color-menu-background) 3px 3px,
var(--color-menu-background) -3px -3px;
a {
width: 100%;
text-decoration: none;
color: inherit;
}
}
.logo_image {
width: 100%;
}
.row {
margin-bottom: 15px;
}
.title {
font-family: var(--family-roboto-slab);
font-weight: 700;
font-size: 2rem;
}
.subtitle {
font-size: 0.8rem;
color: var(--color-text-secondary);
}
</style>