forked from skraloupak/theme-quiz
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
57 lines (48 loc) · 1004 Bytes
/
styles.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
text-size-adjust: 100%;
text-rendering: optimizeLegibility;
font-variant-ligatures: none;
}
details > summary {
@apply list-none;
}
details summary::-webkit-details-marker {
@apply hidden;
}
/* section {
view-transition-name: section;
}
::view-transition-old(section),
::view-transition-new(section) {
height: auto;
right: 0;
left: auto;
transform-origin: right center;
}
::view-transition-old(section) {
animation: 1s cubic-bezier(0.075, 0.82, 0.165, 1) both slide-out;
}
::view-transition-new(section) {
animation: 1s 1s cubic-bezier(0.075, 0.82, 0.165, 1) both slide-in;
}
@keyframes slide-out {
from {
transform: translateX(0);
}
to {
transform: translateX(-100%);
}
}
@keyframes slide-in {
from {
transform: translateX(100%);
}
to {
transform: translateX(0);
}
} */
}