1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

1.0.4 update

This commit is contained in:
tobspr
2020-05-25 20:23:47 +02:00
parent 3f910eebb6
commit 0561cd9f89
6 changed files with 55 additions and 2 deletions

View File

@@ -117,6 +117,10 @@
overflow-y: auto;
pointer-events: all;
@include S(width, 350px);
> strong {
font-weight: bold;
}
}
> .buttons {
@@ -143,6 +147,32 @@
background-color: $colorRedBright;
color: #fff;
}
&.timedButton {
pointer-events: none;
cursor: default;
position: relative;
overflow: hidden;
&::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: unset;
z-index: 5;
content: " ";
display: inline-block;
background: rgba(#fff, 0.6);
@include InlineAnimation(5s linear) {
0% {
width: 100%;
}
100% {
width: 0%;
}
}
}
}
}
}
}