@myst-theme/styles 0.2.3 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +8 -0
- package/app.css +1 -0
- package/citations.css +1 -1
- package/hover.css +40 -0
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
package/app.css
CHANGED
package/citations.css
CHANGED
package/hover.css
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
.hover-card-content {
|
|
2
|
+
animation-duration: 0.6s;
|
|
3
|
+
animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
|
|
4
|
+
}
|
|
5
|
+
.hover-card-content[data-side='top'] {
|
|
6
|
+
animation-name: slideUp;
|
|
7
|
+
}
|
|
8
|
+
.hover-card-content[data-side='bottom'] {
|
|
9
|
+
animation-name: slideDown;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@keyframes slideUp {
|
|
13
|
+
from {
|
|
14
|
+
opacity: 0;
|
|
15
|
+
transform: translateY(10px);
|
|
16
|
+
}
|
|
17
|
+
to {
|
|
18
|
+
opacity: 1;
|
|
19
|
+
transform: translateY(0);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@keyframes slideDown {
|
|
24
|
+
from {
|
|
25
|
+
opacity: 0;
|
|
26
|
+
transform: translateY(-10px);
|
|
27
|
+
}
|
|
28
|
+
to {
|
|
29
|
+
opacity: 1;
|
|
30
|
+
transform: translateY(0);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.hover-document {
|
|
35
|
+
@apply w-[500px] sm:max-w-[500px] bg-white dark:bg-slate-800 text-sm rounded border border-gray-50 shadow-xl article;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.hover-link {
|
|
39
|
+
@apply text-blue-700 dark:text-blue-100 no-underline hover:text-blue-500 font-normal;
|
|
40
|
+
}
|