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

Add basic sounds

This commit is contained in:
tobspr
2020-05-14 19:12:58 +02:00
parent e960773a15
commit af0f56b5e4
24 changed files with 87 additions and 56 deletions

View File

@@ -102,7 +102,7 @@
.badge {
position: absolute;
@include S(bottom, -12px);
@include S(bottom, -8px);
left: 50%;
transform: translateX(-50%);

View File

@@ -4,10 +4,10 @@
left: 0;
right: 0;
bottom: 0;
background: rgba(#333538, 0.95) uiResource("dialog_bg_pattern.png") top left / #{D(10px)} repeat;
background: rgba(#333538, 0.98) uiResource("dialog_bg_pattern.png") top left / #{D(10px)} repeat;
display: flex;
justify-content: center;
align-items: flex-start;
align-items: center;
pointer-events: all;
@include InlineAnimation(0.1s ease-in-out) {
0% {
@@ -16,7 +16,8 @@
}
.dialog {
background: rgba(#333539, 0.5);
background: rgba(#222428, 0.5);
@include S(border-radius, 4px);
@include S(padding, 30px);
@include InlineAnimation(0.5s ease-in-out) {
@@ -117,15 +118,12 @@
button.close {
border: 0;
@include InlineAnimation(0.5s ease-in-out) {
@include InlineAnimation(2s ease-in-out) {
0% {
transform: translateY(50vh);
opacity: 0;
}
50% {
transform: translateY(-5vh);
}
75% {
transform: translateY(2vh);
95% {
opacity: 0;
}
}
@include S(margin-top, 30px);