forked from mattkenney/wildebeest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
78 lines (66 loc) · 1.83 KB
/
styles.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
@tailwind base;
@tailwind components;
@tailwind utilities;
: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%);
--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%);
}
::-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;
}
.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;
}