2017-02-16 19:52:11 +01:00
|
|
|
/* Pop-up boxes */
|
2017-05-30 16:55:58 +02:00
|
|
|
.popup-box-container {
|
2017-02-16 19:52:11 +01:00
|
|
|
display: none; /* Hidden by default */
|
|
|
|
position: fixed; /* Stay in place */
|
2017-05-30 16:55:58 +02:00
|
|
|
z-index: 1; /* Sit on top */
|
2017-02-16 19:52:11 +01:00
|
|
|
left: 0;
|
|
|
|
top: 0;
|
2017-07-03 21:42:11 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-06-15 03:19:52 +02:00
|
|
|
background-color: rbga(var(--my-background-color), 0.4);
|
2017-02-16 19:52:11 +01:00
|
|
|
}
|
|
|
|
|
2017-07-03 21:42:11 +02:00
|
|
|
.popup-box-content {
|
|
|
|
background-color: var(--my-background-color);
|
|
|
|
margin: 15% auto;
|
|
|
|
padding: 12px;
|
|
|
|
border: 5px solid var(--my-highlight-color);
|
|
|
|
width: 70%;
|
2017-08-20 03:36:19 +02:00
|
|
|
overflow: auto; /* Enable scroll if needed */
|
2017-07-03 21:42:11 +02:00
|
|
|
color: var(--my-font-color);
|
|
|
|
}
|
|
|
|
|
2017-08-20 03:36:19 +02:00
|
|
|
.popup-box-button,
|
|
|
|
.popup-box-button-inactive {
|
2017-07-03 21:42:11 +02:00
|
|
|
color: #aaa;
|
|
|
|
float: right;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 2px;
|
|
|
|
margin: 6px;
|
|
|
|
border: 1px solid white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-box-button:hover,
|
|
|
|
.popup-box-button:focus {
|
|
|
|
color: var(--my-font-color);
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-08-20 03:36:19 +02:00
|
|
|
.popupbox-button-inactive {
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2017-06-15 03:19:52 +02:00
|
|
|
.dialog-box-container,
|
|
|
|
#log-box-container {
|
2017-06-01 06:17:50 +02:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
width: 50%;
|
|
|
|
height: auto;
|
2017-06-07 02:28:20 +02:00
|
|
|
max-height: 40%;
|
|
|
|
top: 40%;
|
2017-06-01 06:17:50 +02:00
|
|
|
left: 50%;
|
|
|
|
margin: -10% 0 0 -25%;
|
|
|
|
overflow: auto;
|
2017-06-07 03:23:51 +02:00
|
|
|
background-color: var(--my-background-color);
|
|
|
|
border: 5px solid var(--my-highlight-color);
|
2017-02-16 19:52:11 +01:00
|
|
|
}
|
|
|
|
|
2017-06-15 03:19:52 +02:00
|
|
|
.dialog-box-content,
|
|
|
|
#log-box-content {
|
2017-06-01 06:17:50 +02:00
|
|
|
z-index: 2;
|
2017-06-07 03:23:51 +02:00
|
|
|
background-color: var(--my-background-color);
|
2017-06-01 06:17:50 +02:00
|
|
|
padding: 10px;
|
2017-02-16 19:52:11 +01:00
|
|
|
}
|
|
|
|
|
2017-06-15 03:19:52 +02:00
|
|
|
.dialog-box-close-button,
|
|
|
|
#log-box-close {
|
2017-02-16 19:52:11 +01:00
|
|
|
float: right;
|
2017-06-17 20:19:37 +02:00
|
|
|
color: #aaa;
|
2017-02-16 19:52:11 +01:00
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
-webkit-border-radius: 12px;
|
|
|
|
-moz-border-radius: 12px;
|
|
|
|
border-radius: 12px;
|
|
|
|
-moz-box-shadow: 1px 1px 3px #000;
|
|
|
|
-webkit-box-shadow: 1px 1px 3px #000;
|
|
|
|
box-shadow: 1px 1px 3px #000;
|
|
|
|
}
|
|
|
|
|
2017-06-17 20:19:37 +02:00
|
|
|
#log-box-close {
|
|
|
|
position: fixed;
|
2017-06-19 16:54:11 +02:00
|
|
|
right: 26%;
|
2017-06-17 20:19:37 +02:00
|
|
|
}
|
|
|
|
|
2017-06-01 06:17:50 +02:00
|
|
|
.dialog-box-close-button:hover,
|
2017-06-15 03:19:52 +02:00
|
|
|
.dialog-box-close-button:focus,
|
|
|
|
#log-box-close:hover,
|
|
|
|
#log-box-close:focus {
|
2017-02-16 19:52:11 +01:00
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Purchase server box */
|
|
|
|
#purchase-server-box-container {
|
|
|
|
transition: opacity 400ms ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
#purchase-server-box-input {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2017-08-13 07:01:33 +02:00
|
|
|
/* Purchase Augmentation Box */
|
2017-02-17 23:19:25 +01:00
|
|
|
#purchase-augmentation-box-container {
|
|
|
|
transition: opacity 400ms ease-in;
|
|
|
|
}
|
|
|
|
|
2017-02-16 19:52:11 +01:00
|
|
|
/* Faction invitation box */
|
|
|
|
#faction-invitation-box-container {
|
|
|
|
transition: opacity 400ms ease-in;
|
|
|
|
}
|
2017-05-02 18:28:54 +02:00
|
|
|
#faction-invitation-box-warning {
|
|
|
|
margin: 4px;
|
2017-05-03 06:38:58 +02:00
|
|
|
padding: 4px;
|
2017-05-02 18:28:54 +02:00
|
|
|
}
|
|
|
|
|
2017-07-03 21:42:11 +02:00
|
|
|
/* Infiltration-box */
|
2017-07-25 16:39:56 +02:00
|
|
|
#infiltration-box-sell,
|
2017-07-03 21:42:11 +02:00
|
|
|
#infiltration-box-faction {
|
|
|
|
display: block;
|
|
|
|
padding: 8px;
|
|
|
|
margin: 8px;
|
2017-05-25 16:50:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-13 07:01:33 +02:00
|
|
|
/* Generic Yes No Box */
|
|
|
|
#yes-no-text-input-box-input {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2017-05-25 16:50:58 +02:00
|
|
|
/* Game Options */
|
|
|
|
#game-options-container {
|
|
|
|
transition: opacity 400ms ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
#game-options-content {
|
2017-06-07 03:23:51 +02:00
|
|
|
background-color: var(--my-background-color);
|
2017-07-25 16:39:56 +02:00
|
|
|
margin: 15% auto;
|
2017-05-25 16:50:58 +02:00
|
|
|
padding: 10px;
|
2017-06-07 03:23:51 +02:00
|
|
|
border: 5px solid var(--my-highlight-color);
|
2017-07-25 16:39:56 +02:00
|
|
|
width: 60%;
|
2017-06-07 03:23:51 +02:00
|
|
|
color: var(--my-font-color);
|
2017-05-25 16:50:58 +02:00
|
|
|
}
|
|
|
|
|
2017-07-25 16:39:56 +02:00
|
|
|
#game-options-left-panel,
|
|
|
|
#game-options-right-panel {
|
|
|
|
display: inline-block;
|
|
|
|
width: 49%;
|
|
|
|
}
|
|
|
|
|
2017-05-25 16:50:58 +02:00
|
|
|
#game-options-close-button {
|
|
|
|
color: #aaa;
|
|
|
|
float: right;
|
2017-07-25 16:39:56 +02:00
|
|
|
margin: 4px;
|
2017-05-25 16:50:58 +02:00
|
|
|
padding: 4px;
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
-webkit-border-radius: 12px;
|
|
|
|
-moz-border-radius: 12px;
|
|
|
|
border-radius: 12px white;
|
|
|
|
-moz-box-shadow: 1px 1px 3px #000;
|
|
|
|
-webkit-box-shadow: 1px 1px 3px #000;
|
|
|
|
box-shadow: 1px 1px 3px #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#game-options-close-button:hover,
|
|
|
|
#game-options-close-button:focus {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
2017-06-07 03:23:51 +02:00
|
|
|
}
|
2017-06-08 06:57:40 +02:00
|
|
|
|
2017-07-25 16:39:56 +02:00
|
|
|
#game-options-left-panel fieldset {
|
|
|
|
padding:2px;
|
|
|
|
margin:2px;
|
|
|
|
}
|
|
|
|
|
2017-06-08 06:57:40 +02:00
|
|
|
#import-game-file-selector {
|
|
|
|
display:none;
|
2017-06-09 02:27:34 +02:00
|
|
|
}
|