2018-07-16 16:38:14 +02:00
|
|
|
@import "mixins";
|
2018-07-16 17:54:35 +02:00
|
|
|
@import "theme";
|
|
|
|
|
2018-07-17 05:36:48 +02:00
|
|
|
@import "reset";
|
|
|
|
|
2017-06-07 03:23:51 +02:00
|
|
|
:root{
|
2018-07-09 22:11:18 +02:00
|
|
|
--my-font-color: #6f3;
|
|
|
|
--my-background-color: #000;
|
|
|
|
--my-highlight-color: #fff;
|
2017-06-07 03:23:51 +02:00
|
|
|
}
|
2017-08-20 03:36:19 +02:00
|
|
|
|
2017-09-01 16:12:40 +02:00
|
|
|
body {
|
2017-06-07 03:23:51 +02:00
|
|
|
background-color: var(--my-background-color);
|
2016-10-16 01:23:04 +02:00
|
|
|
}
|
|
|
|
|
2018-06-05 19:19:33 +02:00
|
|
|
p,
|
|
|
|
pre,
|
|
|
|
h2,
|
|
|
|
.text {
|
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 {
|
2018-07-17 05:36:48 +02:00
|
|
|
font-size: $defaultFontSize * 1.375;
|
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-04-18 06:32:17 +02:00
|
|
|
ul {
|
2017-07-03 21:42:11 +02:00
|
|
|
padding: 2px;
|
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;
|
|
|
|
}
|
|
|
|
|
2018-07-17 05:36:48 +02:00
|
|
|
button[type="button"] {
|
|
|
|
@include transform(translateX(-50%));
|
|
|
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
bottom: 10px;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
|
2017-09-01 16:12:40 +02:00
|
|
|
#entire-game-container {
|
2018-07-09 22:42:54 +02:00
|
|
|
background-color: transparent;
|
2017-09-01 16:12:40 +02:00
|
|
|
}
|
|
|
|
|
2017-05-02 05:26:06 +02:00
|
|
|
/* Disable border highlight on elements */
|
|
|
|
input:focus,
|
|
|
|
textarea:focus,
|
|
|
|
button:focus,
|
|
|
|
td:focus,
|
|
|
|
tr:focus {
|
2018-07-09 22:42:54 +02:00
|
|
|
outline: none;
|
2017-05-02 05:26:06 +02:00
|
|
|
}
|
2017-04-24 03:43:41 +02:00
|
|
|
|
2017-07-22 00:54:55 +02:00
|
|
|
/* Main navigation 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;
|
2017-08-20 03:36:19 +02:00
|
|
|
|
2016-10-17 10:24:39 +02:00
|
|
|
border: 0;
|
2018-07-10 05:10:31 +02:00
|
|
|
border-bottom: 1px solid #000;
|
|
|
|
border-radius: 0;
|
|
|
|
background-color: #333;
|
2016-10-17 10:24:39 +02:00
|
|
|
}
|
|
|
|
|
2017-07-22 00:54:55 +02:00
|
|
|
/* Default buttons */
|
2018-07-10 06:00:21 +02:00
|
|
|
.mainmenu > li a {
|
2016-10-17 10:24:39 +02:00
|
|
|
display: block;
|
|
|
|
color: #e6e6e6;
|
2017-07-22 00:54:55 +02:00
|
|
|
background-color: #555;
|
2016-10-17 10:24:39 +02:00
|
|
|
padding: 16px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-07-22 00:54:55 +02:00
|
|
|
/* Hovering makes them lighter */
|
2018-07-10 06:00:21 +02:00
|
|
|
.mainmenu > li a:hover,
|
|
|
|
.mainmenu > li a:hover:not(.active),
|
|
|
|
.mainmenu > li a:focus {
|
2017-07-22 00:54:55 +02:00
|
|
|
background-color: #777;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2016-10-16 01:23:04 +02:00
|
|
|
}
|
|
|
|
|
2017-07-22 00:54:55 +02:00
|
|
|
/* Panel headers can become active, and they are "lighter" than the rest */
|
2018-07-10 06:00:21 +02:00
|
|
|
.mainmenu > li a.active {
|
2017-07-22 00:54:55 +02:00
|
|
|
background-color: #777;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2016-10-16 01:23:04 +02:00
|
|
|
}
|
|
|
|
|
2018-07-10 06:00:21 +02:00
|
|
|
.mainmenu > li a.active:hover {
|
2018-07-09 22:42:54 +02:00
|
|
|
background-color: #aaa;
|
2017-07-22 00:54:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Plus and minus signs */
|
|
|
|
.mainmenu-accordion-header:after {
|
|
|
|
content: '\02795';
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 0.8125;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-07-22 00:54:55 +02:00
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainmenu-accordion-header.opened:after {
|
|
|
|
content: "\2796";
|
|
|
|
}
|
|
|
|
|
|
|
|
.mainmenu-accordion-header.opened {
|
2018-07-09 22:42:54 +02:00
|
|
|
background-color: #222;
|
2017-07-22 00:54:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Slide down transition */
|
|
|
|
.mainmenu-accordion-panel {
|
|
|
|
max-height: 0;
|
|
|
|
opacity: 1;
|
|
|
|
transition: max-height 0.2s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Borders */
|
|
|
|
.mainmenu-accordion-header {
|
2018-07-09 22:42:54 +02:00
|
|
|
border: 2px solid #fff;
|
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 */
|
2018-07-17 05:36:48 +02:00
|
|
|
a:link,
|
|
|
|
a:visited {
|
2018-07-09 22:42:54 +02:00
|
|
|
color: #fff;
|
2017-07-13 18:54:29 +02:00
|
|
|
}
|
|
|
|
|
2017-01-31 04:41:42 +01:00
|
|
|
.a-link-button {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: #555;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-05-16 23:22:54 +02:00
|
|
|
padding: 5px;
|
|
|
|
margin: 5px;
|
2018-07-09 22:11:18 +02:00
|
|
|
border: 1px solid #333;
|
2018-06-13 09:26:07 +02:00
|
|
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
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-09-26 04:44:33 +02:00
|
|
|
.a-link-button:active {
|
2018-07-16 17:28:09 +02:00
|
|
|
@include boxShadow(inset 0 1px 4px rgba(0, 0, 0, 0.6));
|
2017-09-26 04:44:33 +02:00
|
|
|
}
|
|
|
|
|
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;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-05-17 05:50:32 +02:00
|
|
|
padding: 5px;
|
|
|
|
margin: 5px;
|
2018-07-09 22:11:18 +02:00
|
|
|
border: 1px solid #333;
|
2017-02-17 23:19:25 +01:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2018-03-03 22:05:33 +01:00
|
|
|
.a-link-button-inactive:hover .tooltiptext,
|
|
|
|
.a-link-button-inactive:hover .tooltiptexthigh,
|
|
|
|
.a-link-button-inactive:hover .tooltiptextleft {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.a-link-button-inactive:active {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2017-05-05 18:52:48 +02:00
|
|
|
|
2018-05-27 07:29:59 +02:00
|
|
|
/* Make anchor tags ("a" elements) for activated actions */
|
|
|
|
.a-link-button-bought {
|
|
|
|
text-decoration: none;
|
2018-07-09 22:11:18 +02:00
|
|
|
background-color: #0a0;
|
|
|
|
color: #fff;
|
2018-05-27 07:29:59 +02:00
|
|
|
padding: 5px;
|
|
|
|
margin: 5px;
|
2018-07-09 22:11:18 +02:00
|
|
|
border: 1px solid #0a0;
|
2018-05-27 07:29:59 +02:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.a-link-button-bought:hover .tooltiptext,
|
|
|
|
.a-link-button-bought:hover .tooltiptexthigh,
|
|
|
|
.a-link-button-bought:hover .tooltiptextleft {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.a-link-button-bought:active {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2018-06-13 22:12:46 +02:00
|
|
|
.dropdown {
|
2018-07-09 22:42:54 +02:00
|
|
|
color: #fff;
|
|
|
|
background-color: #000;
|
2018-06-13 22:12:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-input {
|
2018-07-09 22:42:54 +02:00
|
|
|
color: #fff;
|
|
|
|
background-color: #000;
|
2018-06-13 22:12:46 +02:00
|
|
|
}
|
|
|
|
|
2017-05-05 18:52:48 +02:00
|
|
|
/* Notification icon (for create program right now only) */
|
2017-07-22 00:54:55 +02:00
|
|
|
#create-program-tab {
|
2018-07-09 22:42:54 +02:00
|
|
|
position: relative;
|
2017-05-05 18:52:48 +02:00
|
|
|
}
|
|
|
|
#create-program-notification {
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 0.625;
|
2017-08-20 03:36:19 +02:00
|
|
|
|
2017-05-05 18:52:48 +02:00
|
|
|
position: absolute; /* Position the badge within the relatively positioned button */
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-on {
|
|
|
|
background-color: #fa3e3e;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-05-05 18:52:48 +02:00
|
|
|
border-radius: 2px;
|
|
|
|
padding: 1px 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification-off {
|
|
|
|
background-color: #333;
|
|
|
|
color: #333;
|
2018-07-10 04:37:19 +02:00
|
|
|
border-radius: 0;
|
|
|
|
padding: 0;
|
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);
|
2018-07-10 03:50:35 +02:00
|
|
|
border: 2px solid var(--my-highlight-color);
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-05-08 16:33:26 +02:00
|
|
|
text-align: center;
|
|
|
|
padding: 4px;
|
2017-05-23 21:26:52 +02:00
|
|
|
left: 101%;
|
2017-08-20 03:36:19 +02:00
|
|
|
|
2017-05-08 16:33:26 +02:00
|
|
|
position: absolute;
|
2017-09-25 14:50:19 +02:00
|
|
|
z-index: 99;
|
2017-05-08 16:33:26 +02:00
|
|
|
}
|
|
|
|
|
2017-10-02 04:35:22 +02:00
|
|
|
/* Same thing as a normal tooltip except its a bit higher */
|
|
|
|
.tooltip .tooltiptexthigh {
|
|
|
|
visibility: hidden;
|
|
|
|
width: 300px;
|
|
|
|
background-color: var(--my-background-color);
|
2018-07-10 03:50:35 +02:00
|
|
|
border: 2px solid var(--my-highlight-color);
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-10-02 04:35:22 +02:00
|
|
|
text-align: center;
|
|
|
|
padding: 4px;
|
|
|
|
left: 101%;
|
2018-07-09 22:42:54 +02:00
|
|
|
bottom: -25%;
|
2017-10-02 04:35:22 +02:00
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
z-index: 99;
|
|
|
|
}
|
|
|
|
|
2018-02-24 23:55:06 +01:00
|
|
|
/* Similar to a normal tooltip except its positioned on the left of the elemnt
|
|
|
|
rather than the right to avoid exceeding the elements normal width */
|
|
|
|
.tooltip .tooltiptextleft {
|
|
|
|
visibility: hidden;
|
|
|
|
width: 300px;
|
|
|
|
background-color: var(--my-background-color);
|
2018-07-10 03:50:35 +02:00
|
|
|
border: 2px solid var(--my-highlight-color);
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2018-02-24 23:55:06 +01:00
|
|
|
text-align: center;
|
|
|
|
padding: 4px;
|
|
|
|
left: 40%;
|
2018-07-09 22:42:54 +02:00
|
|
|
bottom: -10%;
|
2018-02-24 23:55:06 +01:00
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
z-index: 99;
|
|
|
|
}
|
|
|
|
|
2017-10-02 04:35:22 +02:00
|
|
|
.tooltip:hover .tooltiptext,
|
2018-02-24 23:55:06 +01:00
|
|
|
.tooltip:hover .tooltiptexthigh,
|
|
|
|
.tooltip:hover .tooltiptextleft {
|
2017-05-08 16:33:26 +02:00
|
|
|
visibility: visible;
|
2017-05-15 07:09:14 +02:00
|
|
|
}
|
|
|
|
|
2018-03-12 20:39:04 +01:00
|
|
|
/* help tip. Question mark that opens popup with info/details */
|
|
|
|
.help-tip {
|
2018-07-09 22:42:54 +02:00
|
|
|
content: '?';
|
|
|
|
padding: 1px;
|
|
|
|
margin-left: 3px;
|
|
|
|
color: #fff;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
border-radius: 5px;
|
|
|
|
display: inline-block;
|
2018-03-12 20:39:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.help-tip:hover {
|
|
|
|
background-color: #888;
|
|
|
|
}
|
|
|
|
|
|
|
|
.help-tip:active {
|
2018-07-16 17:28:09 +02:00
|
|
|
@include boxShadow(inset 0 1px 4px rgba(0, 0, 0, 0.6));
|
2018-03-12 20:39:04 +01:00
|
|
|
}
|
|
|
|
|
2017-05-15 18:54:23 +02:00
|
|
|
/* Flashing button (Red) */
|
2017-05-15 07:09:14 +02:00
|
|
|
@-webkit-keyframes glowing {
|
2018-07-09 22:05:12 +02:00
|
|
|
0% { background-color: #b20000; -webkit-box-shadow: 0 0 3px #b20000; }
|
2018-07-09 22:11:18 +02:00
|
|
|
50% { background-color: #f00; -webkit-box-shadow: 0 0 40px #f00; }
|
2018-07-09 22:05:12 +02:00
|
|
|
100% { background-color: #b20000; -webkit-box-shadow: 0 0 3px #b20000; }
|
2017-05-15 07:09:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes glowing {
|
2018-07-09 22:05:12 +02:00
|
|
|
0% { background-color: #b20000; -moz-box-shadow: 0 0 3px #b20000; }
|
2018-07-09 22:11:18 +02:00
|
|
|
50% { background-color: #f00; -moz-box-shadow: 0 0 40px #f00; }
|
2018-07-09 22:05:12 +02:00
|
|
|
100% { background-color: #b20000; -moz-box-shadow: 0 0 3px #b20000; }
|
2017-05-15 07:09:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@-o-keyframes glowing {
|
2018-07-09 22:05:12 +02:00
|
|
|
0% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
2018-07-09 22:11:18 +02:00
|
|
|
50% { background-color: #f00; box-shadow: 0 0 40px #f00; }
|
2018-07-09 22:05:12 +02:00
|
|
|
100% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
2017-05-15 07:09:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes glowing {
|
2018-07-09 22:05:12 +02:00
|
|
|
0% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
2018-07-09 22:11:18 +02:00
|
|
|
50% { background-color: #f00; box-shadow: 0 0 40px #f00; }
|
2018-07-09 22:05:12 +02:00
|
|
|
100% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
2017-05-15 07:09:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
}
|
|
|
|
|
2017-07-04 21:34:17 +02:00
|
|
|
/* Blinking Cursor */
|
|
|
|
/* ----- blinking cursor animation ----- */
|
|
|
|
.typed-cursor{
|
2018-07-10 05:10:31 +02:00
|
|
|
opacity: 1;
|
|
|
|
-webkit-animation: blink 0.95s infinite;
|
|
|
|
-moz-animation: blink 0.95s infinite;
|
|
|
|
-ms-animation: blink 0.95s infinite;
|
|
|
|
-o-animation: blink 0.95s infinite;
|
|
|
|
animation: blink 0.95s infinite;
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@-keyframes blink{
|
2018-07-10 05:10:31 +02:00
|
|
|
0% { opacity: 1; }
|
|
|
|
50% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
@-webkit-keyframes blink{
|
2018-07-10 05:10:31 +02:00
|
|
|
0% { opacity: 1; }
|
|
|
|
50% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
@-moz-keyframes blink{
|
2018-07-10 05:10:31 +02:00
|
|
|
0% { opacity: 1; }
|
|
|
|
50% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
@-ms-keyframes blink{
|
2018-07-10 05:10:31 +02:00
|
|
|
0% { opacity: 1; }
|
|
|
|
50% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
@-o-keyframes blink{
|
2018-07-10 05:10:31 +02:00
|
|
|
0% { opacity: 1; }
|
|
|
|
50% { opacity: 0; }
|
|
|
|
100% { opacity: 1; }
|
2017-07-04 21:34:17 +02:00
|
|
|
}
|
|
|
|
|
2017-05-15 18:54:23 +02:00
|
|
|
/* Status text */
|
|
|
|
@-webkit-keyframes status-text{
|
|
|
|
from{
|
2018-07-09 22:42:54 +02:00
|
|
|
opacity: 1;
|
2018-07-10 04:37:19 +02:00
|
|
|
top: 0;
|
2017-05-15 18:54:23 +02:00
|
|
|
}
|
|
|
|
to{
|
2018-07-09 22:42:54 +02:00
|
|
|
opacity: 0;
|
2018-07-10 04:37:19 +02:00
|
|
|
top: 0;
|
2017-05-15 18:54:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-text{
|
2018-07-09 22:42:54 +02:00
|
|
|
display: inline;
|
|
|
|
position: fixed;
|
2018-07-10 04:37:19 +02:00
|
|
|
top: 0;
|
2018-07-09 22:42:54 +02:00
|
|
|
-webkit-animation: status-text 3s 1;
|
2017-05-21 05:45:36 +02:00
|
|
|
background-color: transparent;
|
2018-03-03 22:05:33 +01:00
|
|
|
height: 15%;
|
2017-05-21 05:45:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#status-text-container {
|
|
|
|
background-color: transparent;
|
2017-05-15 18:54:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#status-text {
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 1.25;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-05-15 18:54:23 +02:00
|
|
|
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-06-26 01:39:17 +02:00
|
|
|
width: auto;
|
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-09-19 20:38:03 +02:00
|
|
|
height: 205px; /* Full height */
|
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-07-25 08:01:24 +02:00
|
|
|
width: 19%;
|
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-07-03 21:42:11 +02:00
|
|
|
margin: 8px;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-05-20 09:33:33 +02:00
|
|
|
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 {
|
2018-07-16 16:38:14 +02:00
|
|
|
@include borderRadius(12px);
|
2018-07-16 17:28:09 +02:00
|
|
|
@include boxShadow(1px 1px 3px #000);
|
2018-07-16 16:38:14 +02:00
|
|
|
|
2017-05-25 16:50:58 +02:00
|
|
|
color: #aaa;
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 0.875;
|
2017-05-25 16:50:58 +02:00
|
|
|
font-weight: bold;
|
2017-07-22 00:54:55 +02:00
|
|
|
height: 22px;
|
2018-07-09 22:42:54 +02:00
|
|
|
background-color: #000;
|
2017-05-25 16:50:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#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 {
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-05-25 16:50:58 +02:00
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-06-13 17:58:31 +02:00
|
|
|
|
|
|
|
#character-overview-options-button {
|
2017-07-22 00:54:55 +02:00
|
|
|
display: inline;
|
2017-06-13 17:58:31 +02:00
|
|
|
}
|
2017-06-23 16:23:35 +02:00
|
|
|
|
|
|
|
/* Scan analyze links from AutoLink */
|
|
|
|
.scan-analyze-link {
|
2018-07-09 22:42:54 +02:00
|
|
|
cursor: pointer;
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: underline;
|
2017-06-23 16:23:35 +02:00
|
|
|
}
|
|
|
|
.scan-analyze-link:hover {
|
2018-07-09 22:42:54 +02:00
|
|
|
text-decoration: none;
|
2017-06-23 16:23:35 +02:00
|
|
|
}
|
2017-10-13 17:19:42 +02:00
|
|
|
|
|
|
|
/* Accordion menus (Header with collapsible panel) */
|
|
|
|
.accordion-header {
|
|
|
|
background-color: #444;
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 1.25;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2018-07-10 04:37:19 +02:00
|
|
|
margin: 6px 6px 0 6px;
|
2017-10-13 17:19:42 +02:00
|
|
|
padding: 6px;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 80%;
|
|
|
|
text-align: left;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.accordion-header.active,
|
|
|
|
.accordion-header:hover {
|
|
|
|
background-color: #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
.accordion-header.active:hover {
|
|
|
|
background-color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.accordion-header:after {
|
|
|
|
content: '\02795'; /* "plus" sign (+) */
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 0.8125;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-10-13 17:19:42 +02:00
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.accordion-header.active:after {
|
|
|
|
content: "\2796"; /* "minus" sign (-) */
|
2018-07-17 05:59:25 +02:00
|
|
|
font-size: $defaultFontSize * 0.8125;
|
2018-07-09 22:11:18 +02:00
|
|
|
color: #fff;
|
2017-10-13 17:19:42 +02:00
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.accordion-panel {
|
2018-07-10 04:37:19 +02:00
|
|
|
margin: 0 6px 6px 6px;
|
|
|
|
padding: 0 6px 6px 6px;
|
2017-10-13 17:19:42 +02:00
|
|
|
width: 75%;
|
|
|
|
margin-left: 5%;
|
|
|
|
display: none;
|
|
|
|
background-color: #555;
|
2018-07-09 22:42:54 +02:00
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: none;
|
2017-10-13 17:19:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.accordion-panel div,
|
|
|
|
.accordion-panel ul,
|
|
|
|
.accordion-panel p,
|
|
|
|
.accordion-panel ul > li {
|
|
|
|
background-color: #555;
|
|
|
|
}
|