[+] Add Driving License to Interaction Menu and as 'Object' to show other Players via the Interaction menu

This commit is contained in:
Lukas Moungos
2019-11-02 18:36:17 +01:00
parent e3c3949f1b
commit c46c778a47
14 changed files with 296 additions and 26 deletions

View File

@@ -0,0 +1,35 @@
html, body {
overflow: hidden;
}
#schein {
overflow: hidden;
position: absolute;
right: 0px;
bottom: 0px;
animation: 1s ease-out 0s 1 slideInFromLeft;
}
#erworbene {
overflow: hidden;
Position: absolute;
right: 15%;
top: 46%;
}
#name {
overflow: hidden;
Position: absolute;
left: 40%;
top: 24.4%;
}
@keyframes slideInFromLeft {
0% {
transform: translateY(100%);
}
100% {
transform: translateX(0);
}
}