mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 01:33:54 +01:00
34 lines
708 B
CSS
34 lines
708 B
CSS
#work-in-progress-container {
|
|
color: #66ff33;
|
|
position: fixed;
|
|
padding-top: 10px;
|
|
padding-left: 10px;
|
|
height: 100%;
|
|
}
|
|
|
|
#work-in-progress-text {
|
|
color: #66ff33;
|
|
}
|
|
|
|
#work-in-progress-cancel-button {
|
|
color: #aaa;
|
|
float: right;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
-webkit-border-radius: 12px;
|
|
-moz-border-radius: 12px;
|
|
margin: 10px;
|
|
padding: 5px;
|
|
border-radius: 12px;
|
|
border: 3px solid white;
|
|
-moz-box-shadow: 1px 1px 3px #000;
|
|
-webkit-box-shadow: 1px 1px 3px #000;
|
|
box-shadow: 1px 1px 3px #000;
|
|
}
|
|
|
|
#work-in-progress-cancel-button:hover,
|
|
#work-in-progress-cancel-button:focus {
|
|
color: white;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
} |