-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
32 lines (28 loc) · 809 Bytes
/
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
<template lang="pug">
main
h1 Welcome to my template!
p.
It's a pretty simple site using <a href="https://v3.nuxtjs.org/">Nuxt 3</a>, <a href="https://pugjs.org/api/getting-started.html">Pug</a> and <a href="https://sass-lang.com/">Sass</a>.<br>
I hope they provide an even better developer experience then nuxt already does. In case of problems or critiscism, feel free to open an issue!
a( href="https://github.com/obsidianical" ).signature - Gabriel/Obsidianical
</template>
<style lang="sass">
html, body
margin: 0
padding: 0
*
box-sizing: border-box
main
color: #ebdbb2
font-family: 'Montserrat', sans-serif
background-color: #282828
height: 100vh
padding: 2rem
a
text-decoration: none
color: #458588
&:hover
text-decoration: underline
&:visited
color: #076678
</style>