fancytextstuff/styles/globals.css

75 lines
1.7 KiB
CSS
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@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 ZusatzUtilities */
@layer utilities {
.font-chilanka {
font-family: "Chilanka", cursive;
}
}
@layer components {
.text-shadow-lg {
text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
}
/* SchnellCheck */
body {
background: #111;
color: #fff;
}