Skip to content

Commit

Permalink
bugs fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
saaqi committed Jul 26, 2023
1 parent cf36d95 commit 9844e4c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 16 deletions.
2 changes: 1 addition & 1 deletion assets/css/dependency.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 19 additions & 12 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -815,26 +815,33 @@ body.dark a.top-link {
visibility: visible;
}
a.top-link {
background-color: var(--accent-color);
border-radius: 50px;
bottom: 10px;
font-size: 40px;
box-shadow: var(--button-shadow);
font-size: 20px;
line-height: 0;
opacity: 0;
padding: 10px;
position: fixed;
right: 10px;
-webkit-transition: var(--transition);
right: 5px;
-o-transition: var(--transition);
transition: var(--transition);
-webkit-transition: var(--transition);
-webkit-transition: all ease-in-out .1s;
-o-transition: all ease-in-out .1s;
transition: all ease-in-out .1s;
visibility: hidden;
line-height: 1;
z-index: 4;

}
a.top-link > i {
color: var(--accent-color);
text-shadow: var(--text-shadow);
border-radius: 100px;

color: #fff;
}
a.top-link > i:hover {
text-shadow: none;
a.top-link:hover {
-webkit-box-shadow: inset 0 -2px 0 rgba(0,0,0,0.3);
box-shadow: inset 0 -2px 0 rgba(0,0,0,0.3);
}
a.top-link:active {
-webkit-box-shadow: none;
box-shadow: none;
}
/*Top Link*/
Loading

0 comments on commit 9844e4c

Please sign in to comment.