Footer.vue 943 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="container mx-auto max-w-screen-lg sm:px-6 px-2">
  3. <div class="text-white grid grid-cols-3 py-6">
  4. <div class="col-start-1 col-span-3 sm:col-span-1">
  5. <p><a href="/colophon"><client-only><fa-icon icon="fa-regular fa-circle-question" class="pr-2" /></client-only>About this site…</a></p>
  6. </div>
  7. <div class="col-start-1 col-span-2 sm:col-start-2 sm:col-span-2">
  8. <p class="mt-2 sm:mt-0 sm:text-right"><client-only><fa-icon icon="fa-regular fa-copyright" class="pr-2" /></client-only>Unless otherwise specified, the content of this site is licensed as <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>.</p>
  9. </div>
  10. </div>
  11. </div>
  12. </template>
  13. <style lang="pcss" scoped>
  14. * {
  15. color: theme(colors.slate.400);
  16. font-family: "Open Sans";
  17. }
  18. a {
  19. color: theme(colors.slate.100);
  20. }
  21. </style>