mirror of
https://github.com/cliffe/BreakEscape.git
synced 2026-02-21 11:18:08 +00:00
30 lines
650 B
CSS
30 lines
650 B
CSS
|
|
/* 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;
|
||
|
|
}
|