First Commit

This commit is contained in:
Benjamin Toby
2024-12-09 16:36:17 +01:00
parent f24b493566
commit b037cec100
128 changed files with 3281 additions and 193 deletions
+50 -12
View File
@@ -3,19 +3,57 @@
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
--bg-color: #02030f;
--header-height: 78px;
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
@apply bg-[var(--bg-color)] text-white;
}
.twui-button-general {
@apply rounded-none bg-white text-black;
}
.twui-button-general:hover {
@apply !text-white !bg-white/10 outline-white/10;
}
.twui-button-primary-outlined {
@apply !text-white !border-white/50 !outline-white/50 bg-transparent;
}
.twui-button-primary-outlined:hover {
@apply !text-white/70 !border-white/20 !outline-white/20;
@apply !bg-transparent;
}
.twui-section {
@apply items-start py-20;
}
.twui-span,
.twui-paragraph {
@apply dark:text-white/70 leading-relaxed;
}
.twui-span a,
.twui-paragraph a {
@apply text-blue-400 hover:underline;
}
.twui-card {
@apply rounded-none !bg-transparent md:p-10 p-4;
}
.twui-anchor {
@apply !text-blue-500 !border-blue-500/50 hover:!border-transparent;
}
.twui-h1 {
@apply text-[30px] md:text-[40px] lg:text-[44px];
}
.twui-button-primary-ghost {
@apply bg-transparent text-white;
}