2022-05-03 21:20:14 -07:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
2022-07-05 20:37:49 -07:00
|
|
|
@tailwind utilities;
|
|
|
|
|
2022-07-14 16:36:31 -07:00
|
|
|
/* Reset */
|
|
|
|
|
|
|
|
html,
|
|
|
|
body,
|
|
|
|
p,
|
|
|
|
ol,
|
|
|
|
ul,
|
|
|
|
li,
|
|
|
|
dl,
|
|
|
|
dt,
|
|
|
|
dd,
|
|
|
|
blockquote,
|
|
|
|
figure,
|
|
|
|
fieldset,
|
|
|
|
legend,
|
|
|
|
textarea,
|
|
|
|
pre,
|
|
|
|
iframe,
|
|
|
|
hr,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
font-size: 100%;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
button,
|
|
|
|
input,
|
|
|
|
select {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
html {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
*,
|
|
|
|
*::before,
|
|
|
|
*::after {
|
|
|
|
box-sizing: inherit;
|
|
|
|
}
|
|
|
|
img,
|
|
|
|
video {
|
|
|
|
height: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
iframe {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
td,
|
|
|
|
th {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2022-07-05 20:37:49 -07:00
|
|
|
/* Theme */
|
|
|
|
|
|
|
|
:root {
|
2022-11-30 19:32:32 -08:00
|
|
|
--active: theme('colors.light-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.light-theme.active.dark');
|
|
|
|
--down: theme('colors.light-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.light-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.light-theme.down.muted');
|
|
|
|
--up: theme('colors.light-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.light-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.light-theme.up.muted');
|
|
|
|
--link: theme('colors.light-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.light-theme.link.hover');
|
2022-07-05 20:37:49 -07:00
|
|
|
--bkg-1: theme('colors.light-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.light-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.light-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.light-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.light-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.light-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.light-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.light-theme.fgd-4');
|
2022-11-30 19:32:32 -08:00
|
|
|
--button: theme('colors.light-theme.button.DEFAULT');
|
2022-12-07 18:34:24 -08:00
|
|
|
--input-bkg: theme('colors.light-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.light-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.light-theme.input.borderDark');
|
2022-11-30 19:32:32 -08:00
|
|
|
--button-hover: theme('colors.light-theme.button.hover');
|
|
|
|
--error: theme('colors.light-theme.error');
|
|
|
|
--success: theme('colors.light-theme.success');
|
|
|
|
--warning: theme('colors.light-theme.warning');
|
2022-07-05 20:37:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
[data-theme='Dark'] {
|
2022-11-30 19:32:32 -08:00
|
|
|
--active: theme('colors.dark-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.dark-theme.active.dark');
|
|
|
|
--down: theme('colors.dark-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.dark-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.dark-theme.down.muted');
|
|
|
|
--up: theme('colors.dark-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.dark-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.dark-theme.up.muted');
|
|
|
|
--link: theme('colors.dark-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.dark-theme.link.hover');
|
2022-07-05 20:37:49 -07:00
|
|
|
--bkg-1: theme('colors.dark-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.dark-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.dark-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.dark-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.dark-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.dark-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.dark-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.dark-theme.fgd-4');
|
2022-11-30 19:32:32 -08:00
|
|
|
--button: theme('colors.dark-theme.button.DEFAULT');
|
|
|
|
--button-hover: theme('colors.dark-theme.button.hover');
|
2022-12-07 18:34:24 -08:00
|
|
|
--input-bkg: theme('colors.dark-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.dark-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.dark-theme.input.borderDark');
|
2022-11-30 19:32:32 -08:00
|
|
|
--error: theme('colors.dark-theme.error');
|
|
|
|
--success: theme('colors.dark-theme.success');
|
|
|
|
--warning: theme('colors.dark-theme.warning');
|
2022-07-05 20:37:49 -07:00
|
|
|
}
|
|
|
|
|
2022-12-01 21:51:27 -08:00
|
|
|
[data-theme='Mango Classic'] {
|
|
|
|
--active: theme('colors.mango-classic-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.mango-classic-theme.active.dark');
|
|
|
|
--down: theme('colors.mango-classic-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.mango-classic-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.mango-classic-theme.down.muted');
|
|
|
|
--up: theme('colors.mango-classic-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.mango-classic-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.mango-classic-theme.up.muted');
|
|
|
|
--link: theme('colors.mango-classic-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.mango-classic-theme.link.hover');
|
|
|
|
--bkg-1: theme('colors.mango-classic-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.mango-classic-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.mango-classic-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.mango-classic-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.mango-classic-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.mango-classic-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.mango-classic-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.mango-classic-theme.fgd-4');
|
|
|
|
--button: theme('colors.mango-classic-theme.button.DEFAULT');
|
|
|
|
--button-hover: theme('colors.mango-classic-theme.button.hover');
|
2022-12-07 18:34:24 -08:00
|
|
|
--input-bkg: theme('colors.mango-classic-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.mango-classic-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.mango-classic-theme.input.borderDark');
|
2022-12-01 21:51:27 -08:00
|
|
|
--error: theme('colors.mango-classic-theme.error');
|
|
|
|
--success: theme('colors.mango-classic-theme.success');
|
|
|
|
--warning: theme('colors.mango-classic-theme.warning');
|
2022-07-05 20:37:49 -07:00
|
|
|
}
|
|
|
|
|
2022-12-01 02:59:03 -08:00
|
|
|
[data-theme='Medium'] {
|
|
|
|
--active: theme('colors.medium-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.medium-theme.active.dark');
|
|
|
|
--down: theme('colors.medium-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.medium-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.medium-theme.down.muted');
|
|
|
|
--up: theme('colors.medium-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.medium-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.medium-theme.up.muted');
|
|
|
|
--link: theme('colors.medium-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.medium-theme.link.hover');
|
|
|
|
--bkg-1: theme('colors.medium-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.medium-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.medium-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.medium-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.medium-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.medium-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.medium-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.medium-theme.fgd-4');
|
|
|
|
--button: theme('colors.medium-theme.button.DEFAULT');
|
|
|
|
--button-hover: theme('colors.medium-theme.button.hover');
|
2022-12-07 18:34:24 -08:00
|
|
|
--input-bkg: theme('colors.medium-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.medium-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.medium-theme.input.borderDark');
|
2022-12-01 02:59:03 -08:00
|
|
|
--error: theme('colors.medium-theme.error');
|
|
|
|
--success: theme('colors.medium-theme.success');
|
|
|
|
--warning: theme('colors.medium-theme.warning');
|
|
|
|
}
|
|
|
|
|
2022-12-05 02:59:10 -08:00
|
|
|
[data-theme='High Contrast'] {
|
|
|
|
--active: theme('colors.high-contrast-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.high-contrast-theme.active.dark');
|
|
|
|
--down: theme('colors.high-contrast-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.high-contrast-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.high-contrast-theme.down.muted');
|
|
|
|
--up: theme('colors.high-contrast-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.high-contrast-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.high-contrast-theme.up.muted');
|
|
|
|
--link: theme('colors.high-contrast-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.high-contrast-theme.link.hover');
|
|
|
|
--bkg-1: theme('colors.high-contrast-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.high-contrast-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.high-contrast-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.high-contrast-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.high-contrast-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.high-contrast-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.high-contrast-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.high-contrast-theme.fgd-4');
|
|
|
|
--button: theme('colors.high-contrast-theme.button.DEFAULT');
|
|
|
|
--button-hover: theme('colors.high-contrast-theme.button.hover');
|
2022-12-07 18:34:24 -08:00
|
|
|
--input-bkg: theme('colors.high-contrast-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.high-contrast-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.high-contrast-theme.input.borderDark');
|
2022-12-05 02:59:10 -08:00
|
|
|
--error: theme('colors.high-contrast-theme.error');
|
|
|
|
--success: theme('colors.high-contrast-theme.success');
|
|
|
|
--warning: theme('colors.high-contrast-theme.warning');
|
|
|
|
}
|
|
|
|
|
2022-12-01 21:51:27 -08:00
|
|
|
[data-theme='Blueberry'] {
|
|
|
|
--active: theme('colors.blueberry-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.blueberry-theme.active.dark');
|
|
|
|
--down: theme('colors.blueberry-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.blueberry-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.blueberry-theme.down.muted');
|
|
|
|
--up: theme('colors.blueberry-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.blueberry-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.blueberry-theme.up.muted');
|
|
|
|
--link: theme('colors.blueberry-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.blueberry-theme.link.hover');
|
|
|
|
--bkg-1: theme('colors.blueberry-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.blueberry-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.blueberry-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.blueberry-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.blueberry-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.blueberry-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.blueberry-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.blueberry-theme.fgd-4');
|
|
|
|
--button: theme('colors.blueberry-theme.button.DEFAULT');
|
|
|
|
--button-hover: theme('colors.blueberry-theme.button.hover');
|
2022-12-07 18:34:24 -08:00
|
|
|
--input-bkg: theme('colors.blueberry-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.blueberry-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.blueberry-theme.input.borderDark');
|
2022-12-01 21:51:27 -08:00
|
|
|
--error: theme('colors.blueberry-theme.error');
|
|
|
|
--success: theme('colors.blueberry-theme.success');
|
|
|
|
--warning: theme('colors.blueberry-theme.warning');
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-theme='Banana'] {
|
|
|
|
--active: theme('colors.banana-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.banana-theme.active.dark');
|
|
|
|
--down: theme('colors.banana-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.banana-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.banana-theme.down.muted');
|
|
|
|
--up: theme('colors.banana-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.banana-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.banana-theme.up.muted');
|
|
|
|
--link: theme('colors.banana-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.banana-theme.link.hover');
|
|
|
|
--bkg-1: theme('colors.banana-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.banana-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.banana-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.banana-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.banana-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.banana-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.banana-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.banana-theme.fgd-4');
|
|
|
|
--button: theme('colors.banana-theme.button.DEFAULT');
|
|
|
|
--button-hover: theme('colors.banana-theme.button.hover');
|
2022-12-07 18:34:24 -08:00
|
|
|
--input-bkg: theme('colors.banana-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.banana-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.banana-theme.input.borderDark');
|
2022-12-01 21:51:27 -08:00
|
|
|
--error: theme('colors.banana-theme.error');
|
|
|
|
--success: theme('colors.banana-theme.success');
|
|
|
|
--warning: theme('colors.banana-theme.warning');
|
2022-12-04 15:06:06 -08:00
|
|
|
}
|
|
|
|
|
2022-12-05 02:59:10 -08:00
|
|
|
[data-theme='Olive'] {
|
|
|
|
--active: theme('colors.olive-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.olive-theme.active.dark');
|
|
|
|
--down: theme('colors.olive-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.olive-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.olive-theme.down.muted');
|
|
|
|
--up: theme('colors.olive-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.olive-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.olive-theme.up.muted');
|
|
|
|
--link: theme('colors.olive-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.olive-theme.link.hover');
|
|
|
|
--bkg-1: theme('colors.olive-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.olive-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.olive-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.olive-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.olive-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.olive-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.olive-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.olive-theme.fgd-4');
|
|
|
|
--button: theme('colors.olive-theme.button.DEFAULT');
|
|
|
|
--button-hover: theme('colors.olive-theme.button.hover');
|
2022-12-07 18:34:24 -08:00
|
|
|
--input-bkg: theme('colors.olive-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.olive-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.olive-theme.input.borderDark');
|
2022-12-05 02:59:10 -08:00
|
|
|
--error: theme('colors.olive-theme.error');
|
|
|
|
--success: theme('colors.olive-theme.success');
|
|
|
|
--warning: theme('colors.olive-theme.warning');
|
|
|
|
}
|
|
|
|
|
2022-12-04 15:06:06 -08:00
|
|
|
[data-theme='Lychee'] {
|
|
|
|
--active: theme('colors.lychee-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.lychee-theme.active.dark');
|
|
|
|
--down: theme('colors.lychee-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.lychee-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.lychee-theme.down.muted');
|
|
|
|
--up: theme('colors.lychee-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.lychee-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.lychee-theme.up.muted');
|
|
|
|
--link: theme('colors.lychee-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.lychee-theme.link.hover');
|
|
|
|
--bkg-1: theme('colors.lychee-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.lychee-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.lychee-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.lychee-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.lychee-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.lychee-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.lychee-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.lychee-theme.fgd-4');
|
|
|
|
--button: theme('colors.lychee-theme.button.DEFAULT');
|
|
|
|
--button-hover: theme('colors.lychee-theme.button.hover');
|
2022-12-07 18:34:24 -08:00
|
|
|
--input-bkg: theme('colors.lychee-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.lychee-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.lychee-theme.input.borderDark');
|
2022-12-04 15:06:06 -08:00
|
|
|
--error: theme('colors.lychee-theme.error');
|
|
|
|
--success: theme('colors.lychee-theme.success');
|
|
|
|
--warning: theme('colors.lychee-theme.warning');
|
2022-12-01 04:04:04 -08:00
|
|
|
}
|
|
|
|
|
2022-12-01 21:51:27 -08:00
|
|
|
[data-theme='Avocado'] {
|
|
|
|
--active: theme('colors.avocado-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.avocado-theme.active.dark');
|
|
|
|
--down: theme('colors.avocado-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.avocado-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.avocado-theme.down.muted');
|
|
|
|
--up: theme('colors.avocado-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.avocado-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.avocado-theme.up.muted');
|
|
|
|
--link: theme('colors.avocado-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.avocado-theme.link.hover');
|
|
|
|
--bkg-1: theme('colors.avocado-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.avocado-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.avocado-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.avocado-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.avocado-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.avocado-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.avocado-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.avocado-theme.fgd-4');
|
|
|
|
--button: theme('colors.avocado-theme.button.DEFAULT');
|
|
|
|
--button-hover: theme('colors.avocado-theme.button.hover');
|
2022-12-07 18:34:24 -08:00
|
|
|
--input-bkg: theme('colors.avocado-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.avocado-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.avocado-theme.input.borderDark');
|
2022-12-01 21:51:27 -08:00
|
|
|
--error: theme('colors.avocado-theme.error');
|
|
|
|
--success: theme('colors.avocado-theme.success');
|
|
|
|
--warning: theme('colors.avocado-theme.warning');
|
2022-12-01 01:49:59 -08:00
|
|
|
}
|
|
|
|
|
2023-05-30 20:03:53 -07:00
|
|
|
[data-theme='Bonk'] {
|
|
|
|
--active: theme('colors.bonk-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.bonk-theme.active.dark');
|
|
|
|
--down: theme('colors.bonk-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.bonk-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.bonk-theme.down.muted');
|
|
|
|
--up: theme('colors.bonk-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.bonk-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.bonk-theme.up.muted');
|
|
|
|
--link: theme('colors.bonk-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.bonk-theme.link.hover');
|
|
|
|
--bkg-1: theme('colors.bonk-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.bonk-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.bonk-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.bonk-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.bonk-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.bonk-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.bonk-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.bonk-theme.fgd-4');
|
|
|
|
--button: theme('colors.bonk-theme.button.DEFAULT');
|
|
|
|
--button-hover: theme('colors.bonk-theme.button.hover');
|
|
|
|
--input-bkg: theme('colors.bonk-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.bonk-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.bonk-theme.input.borderDark');
|
|
|
|
--error: theme('colors.bonk-theme.error');
|
|
|
|
--success: theme('colors.bonk-theme.success');
|
|
|
|
--warning: theme('colors.bonk-theme.warning');
|
|
|
|
}
|
|
|
|
|
2023-08-07 21:24:07 -07:00
|
|
|
[data-theme='Pepe'] {
|
|
|
|
--active: theme('colors.pepe-theme.active.DEFAULT');
|
|
|
|
--active-dark: theme('colors.pepe-theme.active.dark');
|
|
|
|
--down: theme('colors.pepe-theme.down.DEFAULT');
|
|
|
|
--down-dark: theme('colors.pepe-theme.down.dark');
|
|
|
|
--down-muted: theme('colors.pepe-theme.down.muted');
|
|
|
|
--up: theme('colors.pepe-theme.up.DEFAULT');
|
|
|
|
--up-dark: theme('colors.pepe-theme.up.dark');
|
|
|
|
--up-muted: theme('colors.pepe-theme.up.muted');
|
|
|
|
--link: theme('colors.pepe-theme.link.DEFAULT');
|
|
|
|
--link-hover: theme('colors.pepe-theme.link.hover');
|
|
|
|
--bkg-1: theme('colors.pepe-theme.bkg-1');
|
|
|
|
--bkg-2: theme('colors.pepe-theme.bkg-2');
|
|
|
|
--bkg-3: theme('colors.pepe-theme.bkg-3');
|
|
|
|
--bkg-4: theme('colors.pepe-theme.bkg-4');
|
|
|
|
--fgd-1: theme('colors.pepe-theme.fgd-1');
|
|
|
|
--fgd-2: theme('colors.pepe-theme.fgd-2');
|
|
|
|
--fgd-3: theme('colors.pepe-theme.fgd-3');
|
|
|
|
--fgd-4: theme('colors.pepe-theme.fgd-4');
|
|
|
|
--button: theme('colors.pepe-theme.button.DEFAULT');
|
|
|
|
--button-hover: theme('colors.pepe-theme.button.hover');
|
|
|
|
--input-bkg: theme('colors.pepe-theme.input.bkg');
|
|
|
|
--input-border: theme('colors.pepe-theme.input.border');
|
|
|
|
--input-border-hover: theme('colors.pepe-theme.input.borderDark');
|
|
|
|
--error: theme('colors.pepe-theme.error');
|
|
|
|
--success: theme('colors.pepe-theme.success');
|
|
|
|
--warning: theme('colors.pepe-theme.warning');
|
|
|
|
}
|
|
|
|
|
2022-07-14 18:46:34 -07:00
|
|
|
/* Base */
|
|
|
|
|
2022-07-05 20:37:49 -07:00
|
|
|
body {
|
2023-06-08 03:41:23 -07:00
|
|
|
@apply font-body text-sm font-medium tracking-wider;
|
2023-03-05 14:43:29 -08:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2022-07-10 19:01:16 -07:00
|
|
|
}
|
|
|
|
|
2023-06-07 19:30:56 -07:00
|
|
|
main {
|
|
|
|
@apply font-body;
|
|
|
|
}
|
|
|
|
|
2022-07-14 20:38:02 -07:00
|
|
|
button {
|
2023-04-19 18:12:45 -07:00
|
|
|
@apply default-transition tracking-wider focus:outline-none;
|
2023-05-03 18:18:26 -07:00
|
|
|
-webkit-font-feature-settings: 'zero' 1;
|
|
|
|
font-feature-settings: 'zero' 1;
|
2022-07-14 20:38:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
2022-08-16 15:58:03 -07:00
|
|
|
@apply transition duration-500 ease-out;
|
2022-07-14 20:38:02 -07:00
|
|
|
}
|
|
|
|
|
2022-07-16 04:22:59 -07:00
|
|
|
.default-transition {
|
2022-08-16 15:58:03 -07:00
|
|
|
@apply transition duration-300 ease-out;
|
2022-07-16 04:22:59 -07:00
|
|
|
}
|
|
|
|
|
2022-07-14 18:46:34 -07:00
|
|
|
/* Type */
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
2023-04-21 07:23:27 -07:00
|
|
|
h3,
|
|
|
|
h4 {
|
2022-07-20 21:50:56 -07:00
|
|
|
@apply font-bold text-th-fgd-1;
|
2022-07-14 18:46:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2022-07-20 21:50:56 -07:00
|
|
|
@apply text-3xl;
|
2022-07-14 18:46:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2022-07-20 21:50:56 -07:00
|
|
|
@apply text-2xl;
|
2022-07-14 18:46:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2022-07-21 22:09:04 -07:00
|
|
|
@apply text-lg;
|
2022-07-14 18:46:34 -07:00
|
|
|
}
|
|
|
|
|
2022-07-14 20:38:02 -07:00
|
|
|
p {
|
2022-10-07 15:27:36 -07:00
|
|
|
@apply text-th-fgd-3;
|
2022-07-14 20:38:02 -07:00
|
|
|
}
|
|
|
|
|
2022-07-21 22:09:04 -07:00
|
|
|
li {
|
|
|
|
@apply text-sm text-th-fgd-3;
|
|
|
|
}
|
|
|
|
|
2023-03-21 17:52:17 -07:00
|
|
|
a {
|
|
|
|
@apply default-transition text-th-fgd-1 md:hover:text-th-fgd-3;
|
|
|
|
}
|
|
|
|
|
2022-11-30 21:21:28 -08:00
|
|
|
/* Forms */
|
|
|
|
|
2023-04-19 18:12:45 -07:00
|
|
|
input {
|
|
|
|
@apply default-transition;
|
|
|
|
}
|
|
|
|
|
2022-11-30 21:21:28 -08:00
|
|
|
input::placeholder {
|
|
|
|
@apply text-th-fgd-4;
|
|
|
|
}
|
|
|
|
|
2022-12-06 19:50:04 -08:00
|
|
|
/* Remove inner shadow from inputs on mobile iOS */
|
|
|
|
textarea,
|
|
|
|
input[type='text'] {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
}
|
|
|
|
|
2022-07-14 16:36:31 -07:00
|
|
|
/* Animations */
|
|
|
|
|
|
|
|
@keyframes sideways-bounce {
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
transform: translateX(-25%);
|
|
|
|
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: translateX(0);
|
|
|
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sideways-bounce {
|
|
|
|
animation: sideways-bounce 1s infinite;
|
|
|
|
}
|
2022-07-14 18:46:34 -07:00
|
|
|
|
|
|
|
/* Table */
|
|
|
|
|
2022-07-21 22:09:04 -07:00
|
|
|
table p {
|
2022-10-05 18:16:29 -07:00
|
|
|
@apply font-mono text-sm text-th-fgd-2;
|
2022-07-21 22:09:04 -07:00
|
|
|
}
|
|
|
|
|
2022-09-18 16:01:57 -07:00
|
|
|
.font-mono {
|
2022-09-18 20:53:52 -07:00
|
|
|
-webkit-font-feature-settings: 'zero' 1;
|
|
|
|
font-feature-settings: 'zero' 1;
|
2022-09-18 16:01:57 -07:00
|
|
|
}
|
|
|
|
|
2023-09-27 15:08:39 -07:00
|
|
|
/* Rewards */
|
|
|
|
|
|
|
|
.font-rewards {
|
|
|
|
@apply mt-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rewards-h2 {
|
|
|
|
@apply font-rewards text-3xl;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rewards-h3 {
|
|
|
|
@apply font-rewards text-xl;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rewards-p {
|
|
|
|
@apply text-base text-th-fgd-1;
|
|
|
|
}
|
|
|
|
|
2023-09-28 06:49:25 -07:00
|
|
|
.banner-wrapper {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner-wrapper::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
background: linear-gradient(
|
|
|
|
to right,
|
|
|
|
var(--bkg-1),
|
|
|
|
rgba(0, 0, 0, 0),
|
|
|
|
rgba(0, 0, 0, 0),
|
|
|
|
var(--bkg-1)
|
|
|
|
);
|
2023-09-28 06:52:29 -07:00
|
|
|
pointer-events: none;
|
2023-09-28 06:49:25 -07:00
|
|
|
}
|
|
|
|
|
2023-09-28 06:34:56 -07:00
|
|
|
@keyframes moveLeftRight {
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
right: -50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes moveRightLeft {
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
left: -50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-27 15:08:39 -07:00
|
|
|
/* Scrollbars */
|
|
|
|
|
2022-09-13 23:24:26 -07:00
|
|
|
.hide-scroll::-webkit-scrollbar {
|
|
|
|
width: 0px;
|
|
|
|
height: 0px;
|
2022-12-20 20:04:08 -08:00
|
|
|
-webkit-appearance: none;
|
2022-09-13 23:24:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.hide-scroll::-webkit-scrollbar-thumb {
|
|
|
|
border: 0px solid transparent;
|
|
|
|
background-clip: padding-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hide-scroll::-webkit-scrollbar-thumb:hover {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hide-scroll::-webkit-scrollbar-track {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2022-07-20 21:50:56 -07:00
|
|
|
.thin-scroll::-webkit-scrollbar {
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thin-scroll::-webkit-scrollbar-thumb {
|
|
|
|
@apply rounded bg-th-bkg-4;
|
|
|
|
border: 2px solid transparent;
|
|
|
|
background-clip: padding-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thin-scroll::-webkit-scrollbar-thumb:hover {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thin-scroll::-webkit-scrollbar-track {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thin-scroll::-webkit-scrollbar-thumb:window-inactive {
|
|
|
|
@apply bg-th-bkg-4;
|
|
|
|
}
|
2022-08-16 20:42:16 -07:00
|
|
|
|
2022-09-13 23:24:26 -07:00
|
|
|
/* Chart */
|
|
|
|
|
|
|
|
.tradingview-chart {
|
|
|
|
display: contents;
|
|
|
|
}
|
|
|
|
|
2022-08-16 20:42:16 -07:00
|
|
|
/* slider */
|
|
|
|
|
|
|
|
input[type='range'] {
|
2023-04-19 17:43:33 -07:00
|
|
|
@apply default-transition h-1.5 appearance-none rounded bg-th-bkg-3 bg-gradient-to-r from-th-active to-th-active bg-no-repeat focus-visible:bg-th-bkg-4;
|
2022-08-16 20:42:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type='range']::-webkit-slider-thumb {
|
2022-12-06 20:30:24 -08:00
|
|
|
@apply h-5 w-5 cursor-ew-resize appearance-none rounded-full bg-th-active-dark shadow;
|
2022-08-16 20:42:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type='range']::-webkit-slider-runnable-track {
|
|
|
|
@apply appearance-none border-0 bg-transparent shadow-none;
|
|
|
|
}
|
2022-09-06 06:15:54 -07:00
|
|
|
|
|
|
|
.intro-bg {
|
2022-09-06 06:26:37 -07:00
|
|
|
background-color: var(--bkg-1);
|
2022-09-06 06:15:54 -07:00
|
|
|
background-image: radial-gradient(at -40% -10%, #5b48ad 0, transparent 40%),
|
|
|
|
radial-gradient(at 150% 150%, #e54033 0, transparent 50%);
|
|
|
|
}
|
2022-09-13 23:24:26 -07:00
|
|
|
|
|
|
|
/* orderbook flash */
|
|
|
|
|
|
|
|
@keyframes green-flash {
|
|
|
|
from {
|
2022-11-30 19:32:32 -08:00
|
|
|
background-color: var(--up-muted);
|
2022-09-13 23:24:26 -07:00
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes green-flash {
|
|
|
|
from {
|
2022-11-30 19:32:32 -08:00
|
|
|
background-color: var(--up-muted);
|
2022-09-13 23:24:26 -07:00
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@-moz-keyframes green-flash {
|
|
|
|
from {
|
2022-11-30 19:32:32 -08:00
|
|
|
background-color: var(--up-muted);
|
2022-09-13 23:24:26 -07:00
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes red-flash {
|
|
|
|
from {
|
2022-11-30 19:32:32 -08:00
|
|
|
background-color: var(--down-muted);
|
2022-09-13 23:24:26 -07:00
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes red-flash {
|
|
|
|
from {
|
2022-11-30 19:32:32 -08:00
|
|
|
background-color: var(--down-muted);
|
2022-09-13 23:24:26 -07:00
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@-moz-keyframes red-flash {
|
|
|
|
from {
|
2022-11-30 19:32:32 -08:00
|
|
|
background-color: var(--down-muted);
|
2022-09-13 23:24:26 -07:00
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.green-flash {
|
|
|
|
-moz-animation: green-flash 0.5s ease 0s 1 alternate;
|
|
|
|
-webkit-animation: green-flash 0.5s ease 0s 1 alternate;
|
|
|
|
animation: green-flash 0.5s ease 0s 1 alternate;
|
|
|
|
}
|
|
|
|
|
|
|
|
.red-flash {
|
|
|
|
-moz-animation: red-flash 0.5s ease 0s 1 alternate;
|
|
|
|
-webkit-animation: red-flash 0.5s ease 0s 1 alternate;
|
|
|
|
animation: red-flash 0.5s ease 0s 1 alternate;
|
|
|
|
}
|
2022-09-19 20:12:34 -07:00
|
|
|
|
|
|
|
.tooltip-underline {
|
2023-07-03 18:24:36 -07:00
|
|
|
@apply default-transition w-max border-b border-dashed border-current hover:cursor-help hover:border-transparent;
|
2022-09-19 20:12:34 -07:00
|
|
|
}
|
2022-11-10 04:58:13 -08:00
|
|
|
|
|
|
|
.radial-gradient-bg {
|
|
|
|
background-image: radial-gradient(
|
2022-11-11 03:24:24 -08:00
|
|
|
at 300% 100%,
|
|
|
|
var(--button) 0,
|
|
|
|
transparent 75%
|
|
|
|
);
|
2022-11-10 04:58:13 -08:00
|
|
|
@apply bg-th-bkg-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tsparticles {
|
|
|
|
@apply absolute h-screen w-full;
|
|
|
|
}
|
2023-06-01 23:05:08 -07:00
|
|
|
|
2023-06-06 22:00:59 -07:00
|
|
|
/* raised button */
|
2023-06-01 23:05:08 -07:00
|
|
|
|
2023-06-06 22:00:59 -07:00
|
|
|
.raised-button {
|
2023-10-05 16:49:46 -07:00
|
|
|
@apply relative z-10 transition-none;
|
2023-06-01 23:05:08 -07:00
|
|
|
}
|
|
|
|
|
2023-10-05 16:49:46 -07:00
|
|
|
.raised-button:after {
|
|
|
|
@apply absolute left-0 top-0 h-full w-full bg-th-button;
|
|
|
|
content: '';
|
2023-06-01 23:05:08 -07:00
|
|
|
box-shadow: 0 4px var(--button-hover);
|
2023-10-05 16:49:46 -07:00
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.raised-button:hover:after {
|
|
|
|
background-color: var(--button);
|
|
|
|
box-shadow: 0 2px var(--button-hover);
|
2023-06-01 23:05:08 -07:00
|
|
|
top: 2px;
|
|
|
|
}
|
|
|
|
|
2023-10-05 16:49:46 -07:00
|
|
|
.raised-button:active:after {
|
2023-06-01 23:05:08 -07:00
|
|
|
box-shadow: 0 0 var(--button-hover);
|
2023-10-05 16:49:46 -07:00
|
|
|
top: 4px;
|
2023-06-01 23:05:08 -07:00
|
|
|
}
|
|
|
|
|
2023-06-06 22:00:59 -07:00
|
|
|
/* raised buy button */
|
2023-06-01 23:05:08 -07:00
|
|
|
|
2023-06-06 22:00:59 -07:00
|
|
|
.raised-buy-button {
|
2023-10-05 16:49:46 -07:00
|
|
|
@apply relative z-10 text-black transition-none;
|
2023-06-01 23:05:08 -07:00
|
|
|
}
|
|
|
|
|
2023-10-05 16:49:46 -07:00
|
|
|
.raised-buy-button:after {
|
|
|
|
@apply absolute left-0 top-0 h-full w-full bg-th-up;
|
|
|
|
content: '';
|
2023-06-01 23:05:08 -07:00
|
|
|
box-shadow: 0 4px var(--up-dark);
|
2023-10-05 16:49:46 -07:00
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.raised-buy-button:hover:after {
|
|
|
|
background-color: var(--up);
|
|
|
|
box-shadow: 0 2px var(--up-dark);
|
2023-06-01 23:05:08 -07:00
|
|
|
top: 2px;
|
|
|
|
}
|
|
|
|
|
2023-10-05 16:49:46 -07:00
|
|
|
.raised-buy-button:active:after {
|
2023-06-01 23:05:08 -07:00
|
|
|
box-shadow: 0 0 var(--up-dark);
|
2023-10-05 16:49:46 -07:00
|
|
|
top: 4px;
|
2023-06-01 23:05:08 -07:00
|
|
|
}
|
2023-07-25 16:27:17 -07:00
|
|
|
|
2023-08-09 20:31:47 -07:00
|
|
|
/* raised sell button */
|
|
|
|
|
|
|
|
.raised-sell-button {
|
2023-10-05 16:49:46 -07:00
|
|
|
@apply relative z-10 text-white transition-none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.raised-sell-button:after {
|
|
|
|
@apply absolute left-0 top-0 h-full w-full bg-th-down;
|
|
|
|
content: '';
|
|
|
|
box-shadow: 0 4px var(--down-dark);
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.raised-sell-button:hover:after {
|
|
|
|
background-color: var(--down);
|
|
|
|
box-shadow: 0 2px var(--down-dark);
|
|
|
|
top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.raised-sell-button:active:after {
|
|
|
|
box-shadow: 0 0 var(--down-dark);
|
|
|
|
top: 4px;
|
|
|
|
}
|
|
|
|
|
2023-07-24 11:17:07 -07:00
|
|
|
.pagination {
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
justify-content: center;
|
|
|
|
display: flex;
|
|
|
|
padding-left: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-link {
|
|
|
|
display: block;
|
|
|
|
border: 1px solid #cccccc;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 5px 10px;
|
|
|
|
margin: 0 2px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.page-link:hover {
|
|
|
|
background-color: #cccccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-item.active .page-link {
|
|
|
|
color: #ffffff;
|
|
|
|
background-color: #007bff;
|
|
|
|
}
|
2023-09-19 22:56:20 -07:00
|
|
|
|
|
|
|
.recharts-layer .recharts-pie-sector {
|
|
|
|
@apply focus:outline-none;
|
|
|
|
}
|
2024-02-11 19:14:47 -08:00
|
|
|
|
|
|
|
/* ui tour */
|
|
|
|
|
|
|
|
.driver-popover.ui-tour {
|
|
|
|
@apply bg-th-bkg-3 p-6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour .driver-popover-title,
|
|
|
|
.driver-popover.ui-tour .driver-popover-description {
|
|
|
|
@apply font-body text-th-fgd-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour .driver-popover-description {
|
|
|
|
@apply mb-6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour .driver-popover-progress-text {
|
|
|
|
@apply text-th-active;
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour .driver-popover-navigation-btns {
|
|
|
|
@apply gap-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour button {
|
|
|
|
@apply default-transition rounded-md border-transparent bg-th-button px-3 py-2 font-bold text-th-fgd-1 focus:outline-none;
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour button:hover {
|
|
|
|
@apply bg-th-button-hover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour .driver-popover-arrow-side-left.driver-popover-arrow {
|
|
|
|
border-left-color: var(--bkg-3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour .driver-popover-arrow-side-right.driver-popover-arrow {
|
|
|
|
border-right-color: var(--bkg-3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour .driver-popover-arrow-side-top.driver-popover-arrow {
|
|
|
|
border-top-color: var(--bkg-3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour .driver-popover-arrow-side-bottom.driver-popover-arrow {
|
|
|
|
border-bottom-color: var(--bkg-3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour .driver-popover-close-btn {
|
|
|
|
@apply bg-transparent p-0 text-th-fgd-3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.driver-popover.ui-tour .driver-popover-close-btn:hover {
|
|
|
|
@apply bg-transparent text-th-fgd-1;
|
|
|
|
}
|