tale-spinner/pages/about.vue

42 lines
1.1 KiB
Vue
Raw Normal View History

2023-10-29 20:25:36 +00:00
<template lang="pug">
.aboutpage
h1 About
p Hi, my name is Wieerwill. <br/> This project is a little hobby i realized on a fun weekend. I do not tend to make money from it in any way, so it stays free of ads or anything else. So have fun and let your creativity flow.
p If you have any suggestions, just write me a mail to
a(href="mailto:jeutter@wieerwill.de") jeutter[at]wieerwill.de
p You can find more projects and infos about me at
a(href="https://wieerwill.de") wieerwill.de
2023-10-30 15:57:15 +00:00
hr
p All Icons on the page and some of the symbols are from
a(href="https://fontawesome.com/") FontAwesome
p All other symbols for the game were generated with StableDiffusion
2023-10-29 20:25:36 +00:00
</template>
<style scoped>
.aboutpage {
margin: 4rem;
margin-bottom: 1rem;
}
h1 {
font-size: 3rem;
text-align: center;
}
p {
font-size: 1.5rem;
margin-bottom: 1rem;
line-height: 1.5;
}
2023-11-02 20:00:31 +00:00
@media (max-width: 768px) {
.aboutpage {
margin: 1rem;
}
h1{
font-size: 1.5rem;
}
p{
font-size: 1rem;
}
}
2023-10-29 20:25:36 +00:00
</style>