2017-07-21 17:54:55 -05:00
|
|
|
/* Both Work in progress and BitNode stuff */
|
2017-09-21 16:27:31 -05:00
|
|
|
.generic-fullscreen-container {
|
2017-07-04 16:18:42 -05:00
|
|
|
color: var(--my-font-color);
|
|
|
|
width: 99%;
|
2017-09-29 10:02:33 -05:00
|
|
|
height: 100%;
|
2017-07-04 16:18:42 -05:00
|
|
|
}
|
|
|
|
|
2017-02-05 23:01:01 -06:00
|
|
|
#work-in-progress-container {
|
2017-02-07 18:27:11 -06:00
|
|
|
position: fixed;
|
2017-02-05 23:01:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#work-in-progress-text {
|
2017-06-06 21:23:51 -04:00
|
|
|
color: var(--my-font-color);
|
2017-05-24 18:23:28 -05:00
|
|
|
width: 70%;
|
2017-07-21 17:54:55 -05:00
|
|
|
margin: 10px;
|
2017-02-05 23:01:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#work-in-progress-cancel-button {
|
|
|
|
color: #aaa;
|
2017-05-06 17:19:18 -05:00
|
|
|
float: left;
|
2017-02-05 23:01:01 -06:00
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
-webkit-border-radius: 12px;
|
|
|
|
-moz-border-radius: 12px;
|
2017-02-16 12:52:11 -06:00
|
|
|
margin: 10px;
|
|
|
|
padding: 5px;
|
2017-02-05 23:01:01 -06:00
|
|
|
border-radius: 12px;
|
2017-02-16 12:52:11 -06:00
|
|
|
border: 3px solid white;
|
2017-02-05 23:01:01 -06: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;
|
2017-07-21 17:54:55 -05:00
|
|
|
}
|
|
|
|
|
2018-05-02 12:38:11 -05:00
|
|
|
#red-pill-container,
|
|
|
|
#cinematic-text-container {
|
2017-07-21 17:54:55 -05:00
|
|
|
position: fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bitnode {
|
|
|
|
color:blue;
|
|
|
|
}
|
|
|
|
.bitnode-destroyed {
|
|
|
|
color:red;
|
|
|
|
}
|
|
|
|
.bitnode:hover,
|
|
|
|
.bitnode-destroyed:hover {
|
|
|
|
color:white;
|
|
|
|
}
|