initial commit
This commit is contained in:
74
styles/globals.css
Normal file
74
styles/globals.css
Normal file
@@ -0,0 +1,74 @@
|
||||
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Caveat&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
|
||||
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@layer utilities {
|
||||
.font-montserrat {
|
||||
font-family: "Montserrat", sans-serif;
|
||||
}
|
||||
.font-bebasneue {
|
||||
font-family: "Bebas Neue", cursive;
|
||||
}
|
||||
.font-pacifico {
|
||||
font-family: "Pacifico", cursive;
|
||||
}
|
||||
.font-caveat {
|
||||
font-family: "Caveat", cursive;
|
||||
}
|
||||
.font-fredokaone {
|
||||
font-family: "Fredoka One", cursive;
|
||||
}
|
||||
.font-playfair {
|
||||
font-family: "Playfair Display", serif;
|
||||
}
|
||||
.font-vt323 {
|
||||
font-family: "VT323", monospace;
|
||||
}
|
||||
|
||||
/* Pseudo / Unicode – Platzhalter */
|
||||
.font-bubble {
|
||||
font-family: inherit;
|
||||
}
|
||||
.font-glitch {
|
||||
font-family: inherit;
|
||||
}
|
||||
.font-wide {
|
||||
font-family: inherit;
|
||||
}
|
||||
.font-upsidedown {
|
||||
font-family: inherit;
|
||||
}
|
||||
.font-strike {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
.font-underline {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
/* eigene Zusatz‑Utilities */
|
||||
@layer utilities {
|
||||
.font-chilanka {
|
||||
font-family: "Chilanka", cursive;
|
||||
}
|
||||
}
|
||||
|
||||
@layer components {
|
||||
.text-shadow-lg {
|
||||
text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
}
|
||||
|
||||
/* Schnell‑Check */
|
||||
body {
|
||||
background: #111;
|
||||
color: #fff;
|
||||
}
|
||||
Reference in New Issue
Block a user