-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploy website - based on f1991305f0ab5f4a324c8d0da7bd41693363c657
- Loading branch information
1 parent
7c3e477
commit b62abb2
Showing
316 changed files
with
2,494 additions
and
934 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
assets/js/runtime~main.2578766b.js → assets/js/runtime~main.0c40e4ab.js
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,40 @@ | ||
pre{position:relative}pre .btnIcon{background-color:hsla(0,0%,100%,.7);border:1px solid transparent;color:#000;cursor:pointer;height:30px;padding:3px;position:absolute;top:4px;transition:.25s ease-out;z-index:2}pre .btnIcon:hover{border:1px solid silver;text-decoration:none}.btnIcon__body{align-items:center;display:flex}.btnIcon svg{fill:currentColor;margin-right:.4em}.btnIcon__label{font-size:11px}.btnClipboard{right:10px} | ||
/* "Copy" code block button */ | ||
pre { | ||
position: relative; | ||
} | ||
|
||
pre .btnIcon { | ||
position: absolute; | ||
top: 4px; | ||
z-index: 2; | ||
cursor: pointer; | ||
border: 1px solid transparent; | ||
padding: 3px; | ||
color: black; | ||
background-color: rgba(255, 255, 255, 0.7); | ||
height: 30px; | ||
transition: all 0.25s ease-out; | ||
} | ||
|
||
pre .btnIcon:hover { | ||
text-decoration: none; | ||
border: 1px solid silver; | ||
} | ||
|
||
.btnIcon__body { | ||
align-items: center; | ||
display: flex; | ||
} | ||
|
||
.btnIcon svg { | ||
fill: currentColor; | ||
margin-right: 0.4em; | ||
} | ||
|
||
.btnIcon__label { | ||
font-size: 11px; | ||
} | ||
|
||
.btnClipboard { | ||
right: 10px; | ||
} |
Oops, something went wrong.