2016-10-16 01:23:04 +02:00
|
|
|
/** This removes all padding and margins as well as
|
|
|
|
setting a default font size and family for the page **/
|
2017-06-07 03:23:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
:root{
|
|
|
|
--my-font-color: #66ff33;
|
|
|
|
--my-background-color: #000000;
|
|
|
|
--my-highlight-color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-16 01:23:04 +02:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 16px;
|
2017-05-22 15:53:50 +02:00
|
|
|
font-family: 'Lucida Console', 'Lucida Sans Unicode', 'Fira Mono', 'Consolas', 'Courier New', Courier, monospace, 'Times New Roman';
|
2017-06-07 03:23:51 +02:00
|
|
|
/*background-color: #252527;*/
|
|
|
|
background-color: var(--my-background-color);
|
2016-10-16 01:23:04 +02:00
|
|
|
}
|
|
|
|
|
2016-10-17 10:24:39 +02:00
|
|
|
p {
|
2017-06-07 03:23:51 +02:00
|
|
|
color: var(--my-font-color);
|
2016-10-16 01:23:04 +02:00
|
|
|
}
|
|
|
|
|
2017-01-31 04:41:42 +01:00
|
|
|
h1 {
|
2017-05-15 03:43:10 +02:00
|
|
|
font-size: 22px;
|
2017-06-07 03:23:51 +02:00
|
|
|
color: var(--my-font-color);
|
2017-01-31 04:41:42 +01:00
|
|
|
}
|
2016-11-24 23:30:33 +01:00
|
|
|
|
2017-02-20 23:45:36 +01:00
|
|
|
h2 {
|
2017-06-07 03:23:51 +02:00
|
|
|
color: var(--my-font-color);
|
2017-02-20 23:45:36 +01:00
|
|
|
}
|
|
|
|
|
2017-04-18 06:32:17 +02:00
|
|
|
ul {
|
2017-04-27 22:02:58 +02:00
|
|
|
padding: 6px;
|
2017-04-18 06:32:17 +02:00
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2017-04-24 17:35:10 +02:00
|
|
|
span {
|
|
|
|
margin: 4px;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2017-05-02 05:26:06 +02:00
|
|
|
/* Disable border highlight on elements */
|
|
|
|
input:focus,
|
|
|
|
textarea:focus,
|
|
|
|
button:focus,
|
|
|
|
td:focus,
|
|
|
|
tr:focus {
|
|
|
|
outline:none;
|
|
|
|
}
|
2017-04-24 03:43:41 +02:00
|
|
|
|
2017-01-31 04:41:42 +01:00
|
|
|
/* Main menu */
|
2016-10-17 10:24:39 +02:00
|
|
|
.mainmenu {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 10%;
|
|
|
|
position: fixed;
|
|
|
|
height: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
border: 0;
|
|
|
|
border-bottom: 1px solid #000000;
|
|
|
|
border-radius: 0;
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainmenu>li a {
|
|
|
|
display: block;
|
|
|
|
color: #e6e6e6;
|
|
|
|
background-color: #333;
|
|
|
|
padding: 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainmenu>li a:hover:not(.active) {
|
|
|
|
background-color: #555;
|
|
|
|
color: white;
|
2016-10-16 01:23:04 +02:00
|
|
|
}
|
|
|
|
|
2016-12-01 23:59:51 +01:00
|
|
|
.mainmenu>li a:focus {
|
|
|
|
background-color: #555;
|
2016-10-16 01:23:04 +02:00
|
|
|
}
|
|
|
|
|
2016-12-01 23:59:51 +01:00
|
|
|
.mainmenu>li a.active {
|
|
|
|
background-color: #555;
|
|
|
|
color: white;
|
2017-02-03 00:33:47 +01:00
|
|
|
|
2016-10-16 01:23:04 +02:00
|
|
|
}
|
|
|
|
|
2017-01-31 04:41:42 +01:00
|
|
|
/* Make html links ("a" elements) nice looking buttons with this class */
|
|
|
|
.a-link-button {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: #555;
|
|
|
|
color: #FFFFFF;
|
2017-05-16 23:22:54 +02:00
|
|
|
padding: 5px;
|
|
|
|
margin: 5px;
|
2017-05-08 19:40:53 +02:00
|
|
|
border: 1px solid #333333;
|
2017-05-23 21:26:52 +02:00
|
|
|
/*width: 30%;*/
|
2016-10-16 01:23:04 +02:00
|
|
|
}
|
2017-02-03 23:05:59 +01:00
|
|
|
|
2017-04-27 22:02:58 +02:00
|
|
|
.a-link-button:hover {
|
|
|
|
background-color: #666;
|
|
|
|
}
|
|
|
|
|
2017-02-17 23:19:25 +01:00
|
|
|
/* Make anchor tags ("a" elements) inactive (not clickable) */
|
|
|
|
.a-link-button-inactive {
|
|
|
|
text-decoration: none;
|
2017-04-27 22:02:58 +02:00
|
|
|
background-color: #333;
|
2017-02-17 23:19:25 +01:00
|
|
|
color: #FFFFFF;
|
2017-05-17 05:50:32 +02:00
|
|
|
padding: 5px;
|
|
|
|
margin: 5px;
|
2017-02-17 23:19:25 +01:00
|
|
|
border-top: 1px solid #333333;
|
|
|
|
border-right: 1px solid #333333;
|
|
|
|
border-bottom: 1px solid #333333;
|
|
|
|
border-left: 1px solid #333333;
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
2017-05-23 21:26:52 +02:00
|
|
|
/*width: 50%;*/
|
2017-02-17 23:19:25 +01:00
|
|
|
}
|
|
|
|
|
2017-05-05 18:52:48 +02:00
|
|
|
|
|
|
|
/* Notification icon (for create program right now only) */
|
|
|
|
.create-program-tab {
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
#create-program-notification {
|
|
|
|
font-size: 10px;
|
|
|
|
|
|
|
|
position: absolute; /* Position the badge within the relatively positioned button */
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-on {
|
|
|
|
background-color: #fa3e3e;
|
|
|
|
color: white;
|
|
|
|
border-radius: 2px;
|
|
|
|
padding: 1px 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-off {
|
|
|
|
background-color: #333;
|
|
|
|
color: #333;
|
|
|
|
border-radius: 0px;
|
|
|
|
padding: 0px;
|
2017-05-08 16:33:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tool tips (when hovering over an element */
|
|
|
|
.tooltip {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip .tooltiptext {
|
|
|
|
visibility: hidden;
|
2017-05-10 22:21:15 +02:00
|
|
|
width: 300px;
|
2017-06-07 03:23:51 +02:00
|
|
|
background-color: var(--my-background-color);
|
|
|
|
border: 2px solid var(--my-highlight-color);;
|
2017-05-08 16:33:26 +02:00
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
padding: 4px;
|
2017-05-23 21:26:52 +02:00
|
|
|
left: 101%;
|
2017-05-08 16:33:26 +02:00
|
|
|
|
|
|
|
position: absolute;
|
2017-05-23 21:26:52 +02:00
|
|
|
z-index: 3;
|
2017-05-08 16:33:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip:hover .tooltiptext {
|
|
|
|
visibility: visible;
|
2017-05-15 07:09:14 +02:00
|
|
|
}
|
|
|
|
|
2017-05-15 18:54:23 +02:00
|
|
|
/* Flashing button (Red) */
|
2017-05-15 07:09:14 +02:00
|
|
|
@-webkit-keyframes glowing {
|
|
|
|
0% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
|
|
|
|
50% { background-color: #FF0000; -webkit-box-shadow: 0 0 40px #FF0000; }
|
|
|
|
100% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes glowing {
|
|
|
|
0% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
|
|
|
|
50% { background-color: #FF0000; -moz-box-shadow: 0 0 40px #FF0000; }
|
|
|
|
100% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@-o-keyframes glowing {
|
|
|
|
0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
|
|
|
|
50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
|
|
|
|
100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes glowing {
|
|
|
|
0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
|
|
|
|
50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
|
|
|
|
100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
|
|
|
|
}
|
|
|
|
|
|
|
|
.flashing-button {
|
|
|
|
-webkit-animation: glowing 1500ms infinite;
|
|
|
|
-moz-animation: glowing 1500ms infinite;
|
|
|
|
-o-animation: glowing 1500ms infinite;
|
|
|
|
animation: glowing 1500ms infinite;
|
2017-05-15 18:54:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Status text */
|
|
|
|
@-webkit-keyframes status-text{
|
|
|
|
from{
|
|
|
|
opacity:1;
|
|
|
|
top:0px;
|
|
|
|
}
|
|
|
|
to{
|
|
|
|
opacity:0;
|
|
|
|
top:0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-text{
|
|
|
|
display:inline;
|
|
|
|
position:fixed;
|
|
|
|
top:0px;
|
|
|
|
-webkit-animation:status-text 3s 1;
|
2017-05-21 05:45:36 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
#status-text-container {
|
|
|
|
background-color: transparent;
|
2017-05-15 18:54:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#status-text {
|
|
|
|
font-size: 20px;
|
|
|
|
color: #FFFFFF;
|
|
|
|
right: 0;
|
2017-05-21 05:45:36 +02:00
|
|
|
bottom: 0;
|
|
|
|
padding: 4px;
|
2017-06-13 17:58:31 +02:00
|
|
|
margin-right: 14px;
|
2017-05-21 05:45:36 +02:00
|
|
|
background-color: transparent;
|
|
|
|
z-index: 2;
|
2017-05-15 18:54:23 +02:00
|
|
|
}
|
2017-05-20 09:33:33 +02:00
|
|
|
|
|
|
|
/* Character Overview */
|
2017-05-21 05:45:36 +02:00
|
|
|
#character-overview-wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
2017-05-20 09:33:33 +02:00
|
|
|
#character-overview-container {
|
2017-05-20 11:27:42 +02:00
|
|
|
display: none;
|
2017-05-21 05:45:36 +02:00
|
|
|
position: absolute; /* Stay in place */
|
2017-05-20 09:33:33 +02:00
|
|
|
right: 0;
|
|
|
|
top: 0;
|
2017-06-13 17:58:31 +02:00
|
|
|
height: 185px; /* Full height */
|
2017-05-21 05:45:36 +02:00
|
|
|
/*margin: 50% auto;*/
|
2017-05-20 09:33:33 +02:00
|
|
|
padding: 5px;
|
2017-06-07 03:23:51 +02:00
|
|
|
border: 2px solid var(--my-highlight-color);
|
2017-05-21 05:45:36 +02:00
|
|
|
width: 18%;
|
2017-05-20 09:33:33 +02:00
|
|
|
overflow: auto; /* Enable scroll if needed */
|
|
|
|
background-color: #444; /* Fallback color */
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#character-overview-text {
|
|
|
|
padding: 4px;
|
2017-06-13 17:58:31 +02:00
|
|
|
margin: 10px;
|
2017-05-20 09:33:33 +02:00
|
|
|
color: white;
|
|
|
|
background-color: #444;
|
|
|
|
}
|
2017-05-25 16:50:58 +02:00
|
|
|
|
2017-06-13 17:58:31 +02:00
|
|
|
#character-overview-save-button,
|
|
|
|
#character-overview-options-button {
|
2017-05-25 16:50:58 +02:00
|
|
|
color: #aaa;
|
|
|
|
font-size: 16px;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
#character-overview-save-button:hover,
|
2017-06-13 17:58:31 +02:00
|
|
|
#character-overview-save-button:focus,
|
|
|
|
#character-overview-options-button:hover,
|
|
|
|
#character-overview-options-button:focus {
|
2017-05-25 16:50:58 +02:00
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-06-13 17:58:31 +02:00
|
|
|
|
|
|
|
#character-overview-options-button {
|
|
|
|
display: inline-block;
|
|
|
|
}
|