base layout and nuxt config

This commit is contained in:
Julian Krauser 2024-10-30 15:02:47 +01:00
parent 91d7dbe447
commit de049e9125
21 changed files with 15855 additions and 9 deletions

View file

@ -0,0 +1,20 @@
/**
* @license
* MyFonts Webfont Build ID 3867246, 2020-12-16T11:57:38-0500
*
* The fonts listed in this notice are subject to the End User License
* Agreement(s) entered into by the website owner. All other parties are
* explicitly restricted from using the Licensed Webfonts(s).
*
* You may obtain a valid license at the URLs below.
*
* Webfont: undefined by undefined
* URL: https://www.myfonts.comundefined
* Copyright: Copyright © 2024 Monotype Imaging Inc. All rights reserved.
*
* © 2024 MyFonts Inc. */
@font-face {
font-family: "ConthraxSemiBold";
src: url("ConthraxSemiBold/font.woff2") format("woff2"), url("ConthraxSemiBold/font.woff") format("woff");
}

Binary file not shown.

Binary file not shown.

32
assets/app.css Normal file
View file

@ -0,0 +1,32 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
font-family: "ConthraxSemiBold";
}
html,
body {
@apply bg-white text-black;
}
[primary] {
@apply bg-primary text-white;
}
.primary-link-active {
@apply underline;
}
.primary-sublink-active {
@apply bg-white text-primary;
}
[lightgray] {
@apply bg-lightgray;
}
[darkgray] {
@apply bg-darkgray text-white;
}