-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
79 lines (69 loc) · 1.61 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<template>
<nav class="sticky top-0 w-full py-3 bg-black/50 backdrop-blur-md z-50">
<div class="flex justify-between items-center 2xl:w-1/2 w-11/12 md:w-2/3 mx-auto">
<div>
<NuxtLink
to="/"
class="text-3xl text-blueGray hover:text-white"
font="display bold"
decoration="none"
>
W<span class="text-xl">izarBook.</span>
</NuxtLink>
</div>
<div class="flex items-center">
<div class="flex items-center mr-4 hover:text-white">
<NuxtLink
to="/blog"
class="text-xl text-blueGray hover:text-white mr-1"
font="display semibold"
decoration="none"
>
Grimoire
</NuxtLink>
<div class="i-lucide-book-marked"></div>
</div>
<div class="flex items-center hover:text-white">
<NuxtLink
to="/resources"
class="text-xl text-blueGray hover:text-white mr-1"
font="display semibold"
decoration="none"
>
Runes
</NuxtLink>
<div class="i-lucide-key"></div>
</div>
</div>
</div>
</nav>
<NuxtPage />
</template>
<style>
:root {
--accent-color: #ffffff;
}
.accent-color {
color: var(--accent-color);
}
/* Global styles reset */
* {
margin: 0;
padding: 0;
text-decoration: none;
}
a {
color: currentColor;
}
body {
background-color: black;
color: #bed5e9;
}
/* Global card styles & effects */
.card-border {
border: solid 1px #80808017;
&:hover {
border: solid 1px #80808056;
}
}
</style>