write doc
Took 2 hours 59 minutes
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user