bitburner-src/css/workinprogress.css

44 lines
905 B
CSS
Raw Normal View History

2017-07-04 23:18:42 +02:00
#generic-fullscreen-container {
color: var(--my-font-color);
padding-top: 10px;
padding-left: 10px;
height: 100%;
width: 99%;
}
2017-02-06 06:01:01 +01:00
#work-in-progress-container {
2017-06-07 03:23:51 +02:00
color: var(--my-font-color);
position: fixed;
padding-top: 10px;
padding-left: 10px;
height: 100%;
width: 99%;
2017-02-06 06:01:01 +01:00
}
#work-in-progress-text {
2017-06-07 03:23:51 +02:00
color: var(--my-font-color);
width: 70%;
2017-02-06 06:01:01 +01:00
}
#work-in-progress-cancel-button {
color: #aaa;
2017-05-07 00:19:18 +02:00
float: left;
2017-02-06 06:01:01 +01:00
font-size: 20px;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
margin: 10px;
padding: 5px;
2017-02-06 06:01:01 +01:00
border-radius: 12px;
border: 3px solid white;
2017-02-06 06:01:01 +01:00
-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;
}