-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.css
50 lines (42 loc) · 1.07 KB
/
input.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
@tailwind base;
@tailwind components;
@tailwind utilities;
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #c7c7c7 trasparent;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 10px;
}
*::-webkit-scrollbar-track {
background: rgb(226 232 240 / var(--tw-bg-opacity));
}
*::-webkit-scrollbar-thumb {
background-color: #c7c7c7;
border-radius: 20px;
border: 2px none transparent;
}
i.emoji {
font-family: 'NotoColorEmojiLimited', -apple-system, BlinkMacSystemFont,
'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Symbol';
font-style: normal;
}
.parallax {
/* transition: all .3s; */
will-change: transform;
}
.experience-bar::before {
content: "";
@apply absolute h-full w-1 bg-slate-500 left-[22px] rounded-full bg-opacity-50;
}
.experience-bar ul li {
@apply flex items-start gap-3;
}
.experience-bar ul li::before {
content: '';
@apply w-[6px] h-[6px] block rounded-full mt-2 flex-[0_0_auto] bg-current;
}