mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 20:59:57 +01:00
35 lines
521 B
CSS
35 lines
521 B
CSS
@import "tailwindcss";
|
|
@import "@nuxt/ui";
|
|
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
@theme static {
|
|
--animate-wave: wave 3s infinite
|
|
}
|
|
|
|
:root {
|
|
--ui-white: #ffffff;
|
|
--ui-bg-white: #f8f8f8;
|
|
--ui-black: #000000;
|
|
--ui-bg-black: #1a1a1a;
|
|
}
|
|
|
|
.dark {
|
|
--ui-white: #ffffff;
|
|
--ui-black: #000000;
|
|
--ui-bg-white: #f8f8f8;
|
|
--ui-bg-black: #1a1a1a;
|
|
}
|
|
|
|
@keyframes wave {
|
|
0%,
|
|
50%,
|
|
100% {
|
|
transform: rotate(-12deg);
|
|
}
|
|
25%, 75% {
|
|
transform: rotate(3deg) scale(1.5);
|
|
}
|
|
}
|
|
|