mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-27 15:36:16 -04:00
Build 29068563
This commit is contained in:
parent
6ef13f2d19
commit
df8bfbb350
25 changed files with 384 additions and 336 deletions
|
@ -513,34 +513,31 @@ h2.histogram-title strong {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
.toast {
|
||||
position:fixed;
|
||||
left:0;
|
||||
top:40px;
|
||||
display:flex;
|
||||
align-items:center;
|
||||
gap:10px;
|
||||
opacity:0.8;
|
||||
background:black;
|
||||
border:1px solid white;
|
||||
border-radius:2px;
|
||||
padding-right:10px;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
opacity: 0.8;
|
||||
background: black;
|
||||
border: 1px solid white;
|
||||
border-radius: 2px;
|
||||
padding-right: 10px;
|
||||
pointer-events: none;
|
||||
animation: toast 800ms forwards;
|
||||
animation: toast forwards;
|
||||
}
|
||||
|
||||
@keyframes toast {
|
||||
0%{
|
||||
0%,
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform:translate(-20px, 0);
|
||||
transform: translate(-20px, -20px) scale(0.5);
|
||||
}
|
||||
10%,90%{
|
||||
10%,
|
||||
90% {
|
||||
opacity: 0.8;
|
||||
transform: none;
|
||||
}
|
||||
100%{
|
||||
opacity: 0;
|
||||
transform:translate(20px, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue