write doc

Took 2 hours 59 minutes
This commit is contained in:
2022-11-29 20:22:42 +01:00
parent 82ab47e9fd
commit 7d9dfca62e
11 changed files with 323 additions and 159 deletions

View File

@ -48,6 +48,32 @@ body {
user-select: none; /* Standard syntax */
}
#blockPanel {
z-index: 999;
position: fixed;
top:0;
left:0;
background-color: rgba(0,0,0,0.9);
width: 100vw;
height: 100vh;
;
transition: opacity 0.4s;;
}
.opacityOutDisplayNone {
animation: opacityOutDisplayNone 0.4s linear forwards;
}
@keyframes opacityOutDisplayNone {
0% {
opacity: 1;
}
100% {
opacity: 0;
height: 0;
}
}
h1 {
font-size: 1.74em;