-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (67 loc) · 1.8 KB
/
Copy pathstyle.css
File metadata and controls
75 lines (67 loc) · 1.8 KB
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
body {
font-family: 'Fira Code', monospace;
overflow-x: hidden;
cursor: url('https://cdn.custom-cursor.com/db/7648/32/meme-pop-cat-cursor.png'), auto;
/*cursor: url('https://cdn.custom-cursor.com/db/18387/32/disney-big-hero-6-baymax-pointer.png'), auto;*/
}
#fullscreen-toggle, #theme-toggle, a {
cursor: url('https://cdn.custom-cursor.com/db/7647/32/meme-pop-cat-pointer.png'), pointer;
/*cursor: url('https://cdn.custom-cursor.com/db/18388/32/disney-big-hero-6-baymax-cursor.png'), pointer;*/
}
/* Warna text selection Default (Light Mode) */
::selection {
background-color: transparent;
color: #15803d;
}
/* Warna text selection Dark Mode */
html.dark ::selection {
background-color: transparent;
color: #4ade80;
}
/* Konfigurasi Scrollbar */
::-webkit-scrollbar {
width: 6px;
height: 0px;
}
/* Tampilan Scrollbar Default (Light Mode) */
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* Tampilan Scrollbar (Dark Mode) */
html.dark ::-webkit-scrollbar-track {
background: #1e1e1e;
}
html.dark ::-webkit-scrollbar-thumb {
background: #4a4a4a;
}
html.dark ::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}
/* Menghilangkan panah pada input number (jika ada) */
input[type="text"] {
caret-color: transparent;
color: transparent;
cursor: url('https://cdn.custom-cursor.com/db/7648/32/meme-pop-cat-cursor.png'), auto !important;
}
/* Efek kursor berkedip */
.blinking-cursor {
animation: blink 1s step-end infinite;
color: #16a34a;
}
html.dark .blinking-cursor {
color: #4ade80;
}
@keyframes blink {
from, to { opacity: 0; }
50% { opacity: 1; }
}
:screen {
background-color: transparent;
}