-
Notifications
You must be signed in to change notification settings - Fork 117
/
globals.css
65 lines (61 loc) · 1.24 KB
/
globals.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body,
#root,
.app {
height: 100%;
width: 100%;
@apply text-sm;
@apply bg-white;
@apply dark:bg-black;
}
/* TIMELINE STYLING */
.timeline ._3_ygE {
@apply rounded-tl-md border border-r-0 border-[#e6e4e4] dark:border-stroke-dark;
}
.timeline ._2eZzQ {
@apply border-[#e6e4e4] dark:border-stroke-dark;
}
.timeline ._2dZTy {
@apply fill-white dark:fill-dark-secondary;
}
.timeline ._2dZTy:nth-child(even) {
@apply fill-[#f5f5f5] dark:fill-dark-tertiary;
}
.timeline ._35nLX {
@apply fill-white stroke-[#e6e4e4] dark:fill-dark-secondary dark:stroke-stroke-dark;
}
.timeline ._9w8d5 {
@apply fill-[#333] dark:fill-white;
}
.timeline ._34SS0 {
@apply bg-white dark:bg-dark-secondary;
}
.timeline ._34SS0:nth-of-type(even) {
@apply bg-[#f5f5f5] dark:bg-dark-tertiary;
}
.timeline ._RuwuK,
.timeline ._3rUKi,
.timeline ._1rLuZ {
@apply stroke-[#e6e4e4] dark:stroke-stroke-dark;
}
.timeline ._3ZbQT {
@apply border-l-0 border-[#e6e4e4] dark:border-stroke-dark;
}
.timeline ._3T42e {
@apply bg-white dark:bg-dark-bg;
}
.timeline ._29NTg {
@apply dark:text-neutral-500;
}
::-webkit-scrollbar {
width: 0px;
height: 0px;
}