Revert "doc/website: migrate to docusaurus v2 (#1382)" (#1383)

This reverts commit 21c3fa83fc.
This commit is contained in:
Ariel Mashraki
2021-03-24 21:18:44 +02:00
committed by GitHub
parent 21c3fa83fc
commit 3773738fd5
43 changed files with 654 additions and 768 deletions

View File

@@ -0,0 +1,39 @@
/* "Copy" code block button */
pre {
position: relative;
}
pre .btnIcon {
position: absolute;
top: 4px;
z-index: 2;
cursor: pointer;
border: 1px solid transparent;
padding: 0;
color: #fff;
background-color: transparent;
height: 30px;
transition: all .25s ease-out;
}
pre .btnIcon:hover {
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;
}