-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
101 lines (91 loc) · 1.59 KB
/
Copy pathstyles.css
File metadata and controls
101 lines (91 loc) · 1.59 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
/* You can add global styles to this file, and also import other style files */
@tailwind base;
@tailwind components;
@tailwind utilities;
.display-none {
@apply hidden;
}
:root {
--scroll-height: 4px;
}
html,
body {
height: 100%;
}
body {
margin: 0;
font-family: Roboto, "Helvetica Neue", sans-serif;
}
img {
max-width: 100%;
}
/*
section {
font-size: 1.5rem;
margin-inline: auto;
padding-block: var(--scroll-height);
width: min(60ch, 100%);
} */
.img-hiddenShow {
animation: reveal 1ms ease-in-out both;
animation-timeline: view();
animation-range: entry 25% cover 50%;
}
.c-indicator {
bottom: 0;
animation: scroll 1ms ease-in-out;
animation-timeline: scroll(root);
/* background-color: rgb(156 163 175); */
transform-origin: left;
height: var(--scroll-height);
inset: 0;
position: fixed;
z-index: 20;
}
@keyframes scroll {
from {
scale: 0 1;
}
to {
scale: 1 1;
}
}
/* ::-webkit-scrollbar {
background: currentcolor;
width: 8px;
}
::-webkit-scrollbar-track {
background: currentcolor;
}
::-webkit-scrollbar-thumb {
background: #fefefe;
border-radius: 10px;
} */
/* .c-indicator {
margin-top: 50px;
animation: scroll 1ms ease-in-out;
animation-timeline: scroll(root);
background-color: rgb(221, 246, 204);
transform-origin: left;
height: var(--scroll-height);
inset: 0;
position: fixed;
} */
/* @keyframes scroll {
from {
scale: 0 1;
}
to {
scale: 1 1;
}
} */
@keyframes reveal {
from {
opacity: 0;
clip-path: inset(45% 20% 45% 20%);
}
to {
opacity: 1;
clip-path: inset(0% 0% 0% 0%);
}
}