-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathutilities.css
More file actions
131 lines (105 loc) · 2.85 KB
/
Copy pathutilities.css
File metadata and controls
131 lines (105 loc) · 2.85 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
@tailwind utilities;
.scrollbar-none {
scrollbar-width: none;
&::-webkit-scrollbar {
display: none !important;
}
}
.scrollbar-w-2::-webkit-scrollbar {
@apply w-2 h-2 !important;
}
.scrollbar-track-gray-lighter::-webkit-scrollbar-track {
@apply bg-gray-300 !important;
}
.scrollbar-thumb-gray::-webkit-scrollbar-thumb {
@apply bg-gray-400 !important;
}
.scrollbar-thumb-rounded::-webkit-scrollbar-thumb {
@apply rounded !important;
}
@supports (position: sticky) {
@media (min-width: theme('screens.lg')) {
.sticky\?lg\:h-screen {
height: 100vh !important;
}
.sticky\?lg\:h-\(screen-18\) {
height: calc(100vh - theme('spacing.18'));
}
}
}
@media (prefers-reduced-motion: reduce) {
.motion-reduce\:transform-none:hover {
transform: none !important;
}
}
@media (prefers-reduced-motion: no-preference) {
.motion-safe\:hover\:-translate-y-1:hover {
--transform-translate-y: -0.25rem !important;
}
}
@media (prefers-reduced-motion: no-preference) {
.motion-safe\:hover\:scale-110:hover {
--transform-scale-x: 1.1 !important;
--transform-scale-y: 1.1 !important;
}
}
.focus\:bg-gray-600:focus {
@apply bg-gray-600 !important;
}
.focus\:text-white:focus {
@apply text-white !important;
}
.group:hover .group-hover\:text-white {
@apply text-white !important;
}
.focus-within\:border-teal-500:focus-within {
@apply border-teal-500 !important;
}
.focus-visible\:underline:focus-visible {
@apply underline !important;
}
.focus-visible\:underline.focus-visible {
@apply underline !important;
}
.active\:bg-blue-700:active {
@apply bg-blue-700 !important;
}
.checked\:bg-blue-600:checked {
@apply bg-blue-600 !important;
}
.checked\:border-transparent:checked {
@apply border-transparent !important;
}
.appearance-none::-ms-expand {
display: none !important;
}
.bg-checkered {
background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23F0F0F0' d='M0 0h8v8H0zm8 8h8v8H8z'/%3E%3C/svg%3E");
background-size: 16px 16px;
}
.after\:hash::after {
content: '#';
}
.code-highlight {
border-radius: 0.1875rem;
padding: 0.0625rem 0.1875rem;
margin: 0 -0.1875rem;
}
body.cursor-grabbing * {
cursor: grabbing !important;
}
.mono-active > div:not(.not-mono) > span {
color: rgba(255, 255, 255, 0.25);
}
.mono > div > span {
transition-duration: 0.5s;
transition-property: background-color, border-color, color, fill, stroke;
}
.form-tick:checked {
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3e%3c/svg%3e");
border-color: transparent;
background-color: currentColor;
background-size: 100% 100%;
background-position: center;
background-repeat: no-repeat;
}