Add Lockpicking and Dusting Minigame Styles: Introduce new CSS files for lockpicking and dusting minigames, enhancing visual feedback and user interaction. Update inventory styles for improved scaling and responsiveness. Refactor existing styles to remove legacy dusting game components and ensure consistency across minigame interfaces.

This commit is contained in:
Z. Cliffe Schreuders
2025-10-10 18:55:41 +01:00
parent 45d885d913
commit a010576dfd
7 changed files with 44 additions and 214 deletions

29
css/lockpicking.css Normal file
View File

@@ -0,0 +1,29 @@
/* Lockpicking Minigame Styles */
/* Lockpicking feedback styling */
.lockpick-feedback {
background: rgba(0, 0, 0, 0.8);
color: #00ff00;
padding: 10px 15px;
border-radius: 5px;
margin: 10px 0;
font-family: 'VT323', monospace;
font-size: 16px;
text-align: center;
border: 1px solid #00ff00;
min-height: 20px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
position: relative;
z-index: 1000;
width: 100%;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.lockpick-feedback:empty {
display: none;
}