File tree Expand file tree Collapse file tree 1 file changed +45
-0
lines changed
src/LinkDotNet.Blog.Web/wwwroot/css Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Original file line number Diff line number Diff line change 34
34
width : 80% ;
35
35
}
36
36
}
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
+ }
You can’t perform that action at this time.
0 commit comments