Skip to content

Commit

Permalink
add missing support prefix
Browse files Browse the repository at this point in the history
- added missing support prefix for the transform property
  • Loading branch information
SethClydesdale committed Dec 27, 2024
1 parent c104eeb commit 46cba53
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions resources/css/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,8 @@ a#fork-me {
line-height:30px;
height:30px;
width:200px;
transform:rotate(45deg);
-webkit-transform:rotate(45deg);
transform:rotate(45deg);
position:absolute;
right:-55px;
top:30px;
Expand Down Expand Up @@ -438,7 +439,8 @@ a.anchor {

.anchor-icon {
display:inline-block;
transform:rotate(-45deg);
-webkit-transform:rotate(-45deg);
transform:rotate(-45deg);
visibility:hidden;
}

Expand Down Expand Up @@ -520,7 +522,8 @@ h1:hover .anchor-icon, h2:hover .anchor-icon, h3:hover .anchor-icon, h4:hover .a
position:absolute;
top:-5px;
left:-10px;
transform:rotate(-30deg);
-webkit-transform:rotate(-30deg);
transform:rotate(-30deg);
text-shadow:1px 1px 2px #330, -1px -1px 2px #330, 0px 0px 3px #330;
pointer-events:none;
}
Expand Down
Loading

0 comments on commit 46cba53

Please sign in to comment.