forked from coracle/flotilla
92 lines
1.4 KiB
CSS
92 lines
1.4 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@font-face {
|
|
font-family: "Satoshis";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src:
|
|
local(""),
|
|
url("/fonts/Satoshi Symbol.ttf") format("truetype");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Lato";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src:
|
|
local(""),
|
|
url("/fonts/Lato-Regular.ttf") format("truetype");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Lato";
|
|
font-style: bold;
|
|
font-weight: 600;
|
|
src:
|
|
local(""),
|
|
url("/fonts/Lato-Bold.ttf") format("truetype");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Lato";
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
src:
|
|
local(""),
|
|
url("/fonts/Italic.ttf") format("truetype");
|
|
}
|
|
|
|
:root {
|
|
font-family: Lato;
|
|
}
|
|
|
|
[data-theme="dark"] {
|
|
--stark: #111;
|
|
--stark-content: #eee;
|
|
}
|
|
|
|
[data-theme="light"] {
|
|
--stark: #eee;
|
|
--stark-content: #111;
|
|
}
|
|
|
|
.text-stark,
|
|
.hover\:text-stark:hover {
|
|
color: var(--stark);
|
|
}
|
|
|
|
.text-stark-content,
|
|
.hover\:text-stark-content:hover {
|
|
color: var(--stark-content);
|
|
}
|
|
|
|
.bg-stark,
|
|
.hover\:bg-stark:hover {
|
|
background-color: var(--stark);
|
|
}
|
|
|
|
.bg-stark-content,
|
|
.hover\:bg-stark-content:hover {
|
|
background-color: var(--stark-content);
|
|
}
|
|
|
|
.card {
|
|
padding: 1rem;
|
|
background-color: oklch(var(--b2) / 1);
|
|
border-radius: var(--rounded-box, 1rem);
|
|
}
|
|
|
|
.column {
|
|
@apply flex flex-col;
|
|
}
|
|
|
|
.heading {
|
|
@apply text-2xl text-stark-content text-center;
|
|
}
|
|
|
|
.subheading {
|
|
@apply text-xl text-stark-content text-center;
|
|
}
|