Skip to content

Commit da21bc7

Browse files
committed
Added missed css from ReadingIndicator
1 parent a7c47e0 commit da21bc7

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

src/LinkDotNet.Blog.Web/wwwroot/css/blogpost.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,48 @@
3434
width: 80%;
3535
}
3636
}
37+
38+
.progress-container {
39+
position: fixed;
40+
bottom: 20px;
41+
right: 20px;
42+
z-index: 1000;
43+
opacity: 0;
44+
transition: opacity 1.5s;
45+
}
46+
47+
.progress-container.visible {
48+
opacity: 1;
49+
}
50+
51+
@keyframes fadeOut {
52+
to {
53+
opacity: 0;
54+
}
55+
}
56+
57+
.progress-circle {
58+
width: 50px;
59+
height: 50px;
60+
}
61+
62+
.progress-bg {
63+
fill: none;
64+
stroke: #f3f3f3;
65+
stroke-width: 4;
66+
}
67+
68+
.progress-bar {
69+
fill: none;
70+
stroke: #4caf50;
71+
stroke-width: 4;
72+
stroke-linecap: round;
73+
transform-origin: center;
74+
transform: rotate(-90deg);
75+
stroke-dasharray: 100, 100;
76+
stroke-dashoffset: 100;
77+
}
78+
79+
[data-bs-theme='light'] .progress-bg {
80+
stroke: #444444;
81+
}

0 commit comments

Comments
 (0)