wildebeest/frontend/src/styles.scss

79 wiersze
1.8 KiB
SCSS

2023-01-04 21:22:43 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-01-10 16:51:54 +00:00
:root, ::before, ::after {
// Change the value of wildebeest-hue to change the hue/base color
// of the whole wildebeest application
--wildebeest-hue: 225;
--wildebeest-vibrant-hue: calc( var(--wildebeest-hue) + 15 );
--wildebeest-color-200: hsl(var(--wildebeest-hue), 25%, 88%);
--wildebeest-color-400: hsl(var(--wildebeest-hue), 29%, 70%);
2023-01-11 10:16:46 +00:00
--wildebeest-color-500: hsl(var(--wildebeest-hue), 16%, 65%);
--wildebeest-color-700: hsl(var(--wildebeest-hue), 16%, 23%);
--wildebeest-color-600: hsl(var(--wildebeest-hue), 15%, 19%);
--wildebeest-color-800: hsl(var(--wildebeest-hue), 16%, 15%);
--wildebeest-color-900: hsl(var(--wildebeest-hue), 15%, 12%);
--wildebeest-vibrant-color-400: hsl(var(--wildebeest-vibrant-hue), 100%, 77%);
--wildebeest-vibrant-color-500: hsl(var(--wildebeest-vibrant-hue), 100%, 69%);
--wildebeest-vibrant-color-600: hsl(var(--wildebeest-vibrant-hue), 100%, 67%);
}
2023-02-14 12:27:12 +00:00
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-corner {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--wildebeest-color-700);
border: 0;
border-radius: 0;
}
::-webkit-scrollbar-track {
border: 0;
border-radius: 0;
background: var(--wildebeest-color-900);
}
::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
background: var(--wildebeest-color-600);
}
body {
font-family: ui-sans-serif, sans-serif, ui-sans-serif;
line-height: 1.25rem;
text-rendering: optimizelegibility;
}
a {
color: inherit;
text-decoration: underline;
cursor: pointer;
}
button {
cursor: pointer;
}
.pointer {
cursor: pointer;
}
2023-02-15 12:47:55 +00:00
.custom-emoji {
display: inline-block;
font-size: inherit;
vertical-align: middle;
-o-object-fit: contain;
object-fit: contain;
margin: -.2ex 0.15em .2ex;
width: 1rem;
height: 1rem;
}