2019-01-23 14:26:44 +00:00
|
|
|
body {
|
2019-01-23 14:41:40 +00:00
|
|
|
font-family: "Noto Sans", sans-serif;
|
2019-01-30 17:00:40 +00:00
|
|
|
margin: 0;
|
|
|
|
font-size: 10pt; }
|
2019-01-23 14:26:44 +00:00
|
|
|
|
2019-01-24 13:27:04 +00:00
|
|
|
.btn, input[type="submit"] {
|
2019-01-23 14:26:44 +00:00
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
2019-01-25 16:09:18 +00:00
|
|
|
background: #345;
|
2019-01-23 14:26:44 +00:00
|
|
|
padding: 5px;
|
|
|
|
color: white;
|
2019-01-25 16:09:18 +00:00
|
|
|
border-radius: 3px;
|
2019-01-24 13:27:04 +00:00
|
|
|
margin-right: 5px;
|
|
|
|
white-space: nowrap;
|
|
|
|
border: none; }
|
|
|
|
.btn:hover, input[type="submit"]:hover {
|
|
|
|
background: #666; }
|
|
|
|
|
2019-02-11 20:28:48 +00:00
|
|
|
input[type="number"] {
|
|
|
|
width: 80px;
|
|
|
|
text-align: right; }
|
|
|
|
|
2019-01-24 13:27:04 +00:00
|
|
|
@keyframes dash-animation {
|
|
|
|
to {
|
|
|
|
stroke-dashoffset: -1000; } }
|
2019-01-23 14:26:44 +00:00
|
|
|
|
2019-01-25 09:43:55 +00:00
|
|
|
img.icon {
|
|
|
|
height: .9em;
|
|
|
|
width: .9em; }
|
|
|
|
|
2019-01-23 14:26:44 +00:00
|
|
|
#interface {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw; }
|
|
|
|
|
|
|
|
#status {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
2019-01-30 17:00:40 +00:00
|
|
|
width: 380px;
|
2019-01-23 14:26:44 +00:00
|
|
|
height: 100%;
|
|
|
|
overflow-y: scroll; }
|
|
|
|
#status > div {
|
|
|
|
width: 33.3333333%;
|
2019-01-25 10:17:10 +00:00
|
|
|
height: 200px;
|
2019-01-23 14:26:44 +00:00
|
|
|
border: solid 1px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative; }
|
2019-01-24 13:27:04 +00:00
|
|
|
#status > div#overview {
|
|
|
|
width: 66.66667%; }
|
2019-01-25 09:43:55 +00:00
|
|
|
#status .counts dd, #status .counts dt {
|
|
|
|
display: inline-block;
|
|
|
|
width: 30px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margiN: 0; }
|
|
|
|
#status .counts dd:hover, #status .counts dt:hover {
|
|
|
|
width: auto; }
|
2019-01-23 14:26:44 +00:00
|
|
|
#status .hugvey {
|
|
|
|
background-image: linear-gradient(to top, #587457, #35a589);
|
|
|
|
color: white;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center; }
|
|
|
|
#status .hugvey h1 {
|
|
|
|
text-align: center;
|
2019-01-23 14:41:40 +00:00
|
|
|
margin: 0;
|
2019-01-25 10:17:10 +00:00
|
|
|
font-weight: normal;
|
2019-01-23 14:26:44 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 5px;
|
|
|
|
top: 5px; }
|
2019-01-25 10:17:10 +00:00
|
|
|
#status .hugvey .status {
|
|
|
|
font-sytle: italic;
|
|
|
|
color: gray;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 5px; }
|
|
|
|
#status .hugvey .stats .count {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px; }
|
2019-01-23 14:26:44 +00:00
|
|
|
#status .hugvey.hugvey--off {
|
|
|
|
background-image: linear-gradient(to top, #575d74, #3572a5); }
|
2019-01-25 10:17:10 +00:00
|
|
|
#status .hugvey.hugvey--off .status {
|
2019-01-25 09:43:55 +00:00
|
|
|
text-align: center; }
|
|
|
|
#status .hugvey.hugvey--gone {
|
|
|
|
background-image: linear-gradient(to top, orange, #ce5c00); }
|
|
|
|
#status .hugvey.hugvey--paused {
|
|
|
|
background-image: linear-gradient(to top, #888a85, #555753); }
|
|
|
|
#status .hugvey.hugvey--finished {
|
|
|
|
background-image: linear-gradient(to top, #888a85, #35a589); }
|
2019-01-25 10:17:10 +00:00
|
|
|
#status .hugvey.hugvey--finished .status {
|
|
|
|
color: darkgreen; }
|
2019-01-23 14:26:44 +00:00
|
|
|
|
|
|
|
#story {
|
2019-01-24 13:27:04 +00:00
|
|
|
position: relative;
|
|
|
|
width: calc(100% - 430px); }
|
2019-01-23 14:26:44 +00:00
|
|
|
#story #controls {
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
2019-01-24 13:27:04 +00:00
|
|
|
left: 5px;
|
|
|
|
white-space: nowrap; }
|
2019-01-23 14:26:44 +00:00
|
|
|
#story svg#graph {
|
|
|
|
width: 100%;
|
2019-01-23 14:41:40 +00:00
|
|
|
height: 100%;
|
|
|
|
cursor: grab; }
|
|
|
|
#story svg#graph:active {
|
|
|
|
cursor: grabbing; }
|
2019-01-25 13:10:19 +00:00
|
|
|
#story svg#graph .beenHit circle {
|
|
|
|
stroke: #0f0;
|
2019-02-28 17:58:03 +00:00
|
|
|
stroke-width: 25px; }
|
2019-01-25 13:10:19 +00:00
|
|
|
#story svg#graph line.beenHit {
|
|
|
|
stroke: #0f0; }
|
2019-01-23 14:41:40 +00:00
|
|
|
#story circle {
|
|
|
|
cursor: pointer;
|
|
|
|
fill: #77618e; }
|
|
|
|
#story .startMsg circle {
|
2019-02-28 17:58:03 +00:00
|
|
|
fill: lightseagreen !important; }
|
2019-01-23 14:41:40 +00:00
|
|
|
#story .orphanedMsg {
|
2019-02-28 17:58:03 +00:00
|
|
|
fill: lightcoral !important; }
|
2019-01-23 14:41:40 +00:00
|
|
|
#story text {
|
|
|
|
text-anchor: middle;
|
|
|
|
font-size: 11pt;
|
|
|
|
font-family: sans-serif;
|
|
|
|
fill: white; }
|
2019-01-24 13:27:04 +00:00
|
|
|
#story text.msg_id {
|
|
|
|
transform: translateY(-20px);
|
|
|
|
opacity: .5; }
|
|
|
|
#story text.msg_txt {
|
|
|
|
font-weight: bold; }
|
2019-01-23 14:41:40 +00:00
|
|
|
#story line {
|
|
|
|
marker-end: url("#arrowHead");
|
2019-02-28 17:58:03 +00:00
|
|
|
stroke-width: 5px;
|
2019-01-23 14:41:40 +00:00
|
|
|
stroke: black; }
|
2019-01-24 13:27:04 +00:00
|
|
|
#story line.link--noconditions {
|
|
|
|
stroke-dasharray: 5 4;
|
|
|
|
stroke: red; }
|
|
|
|
#story line.dir-highlight {
|
|
|
|
stroke-dasharray: 5;
|
|
|
|
animation: dash-animation 20s infinite linear;
|
|
|
|
stroke-width: 3px; }
|
2019-01-23 14:41:40 +00:00
|
|
|
#story label::after {
|
|
|
|
content: '';
|
|
|
|
clear: both;
|
|
|
|
display: block; }
|
|
|
|
#story label {
|
|
|
|
width: 100%;
|
|
|
|
font-weight: bold;
|
|
|
|
display: block;
|
|
|
|
margin: 0 -10px;
|
|
|
|
padding: 5px 10px; }
|
2019-02-11 20:28:48 +00:00
|
|
|
#story label input, #story label select, #story label .label-value, #story label .label-unit {
|
|
|
|
float: right; }
|
2019-01-23 14:41:40 +00:00
|
|
|
#story label:nth-child(odd) {
|
|
|
|
background-color: rgba(255, 255, 255, 0.3); }
|
|
|
|
#story #msg {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2019-01-30 17:00:40 +00:00
|
|
|
width: 385px;
|
2019-01-23 14:41:40 +00:00
|
|
|
max-height: 100%;
|
|
|
|
overflow-y: auto; }
|
2019-02-18 21:33:31 +00:00
|
|
|
#story #msg .directions h3 {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
margin-right: 5em; }
|
2019-01-23 14:41:40 +00:00
|
|
|
#story #msg .msg__info, #story #msg .directions > div {
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
background: lightgray; }
|
2019-02-28 17:58:03 +00:00
|
|
|
#story #msg .msg__info.btn, #story #msg .directions > div.btn {
|
|
|
|
background: darkblue; }
|
2019-01-25 14:45:46 +00:00
|
|
|
#story #msg h1 {
|
|
|
|
margin: 0; }
|
2019-02-24 20:38:08 +00:00
|
|
|
#story #msg .msg__info .btn--delete-mss {
|
2019-01-25 14:45:46 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 15px;
|
|
|
|
right: 10px; }
|
2019-01-25 16:09:18 +00:00
|
|
|
#story #msg .play {
|
|
|
|
text-align: center; }
|
2019-01-24 13:27:04 +00:00
|
|
|
#story #msg .direction {
|
|
|
|
position: relative; }
|
|
|
|
#story #msg .direction h3 {
|
|
|
|
margin-top: 0; }
|
|
|
|
#story #msg .direction .btn--delete {
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
right: 0px; }
|
2019-03-07 19:19:43 +00:00
|
|
|
#story #msg #diversions .diversion {
|
|
|
|
background: pink; }
|
2019-01-23 14:41:40 +00:00
|
|
|
#story #nodes g:hover circle,
|
|
|
|
#story .selectedMsg circle {
|
|
|
|
stroke: lightgreen;
|
2019-02-28 17:58:03 +00:00
|
|
|
stroke-width: 27; }
|
2019-03-07 19:19:43 +00:00
|
|
|
#story .diversion circle {
|
|
|
|
fill: pink !important; }
|
2019-01-23 14:41:40 +00:00
|
|
|
#story .controlDown #nodes g:hover circle,
|
|
|
|
#story .secondaryMsg circle {
|
|
|
|
stroke: lightgreen;
|
|
|
|
stroke-width: 5;
|
|
|
|
stroke-dasharray: 10 3; }
|
2019-01-25 16:09:18 +00:00
|
|
|
#story .condition {
|
|
|
|
position: relative; }
|
|
|
|
#story .condition h4 {
|
|
|
|
text-align: center; }
|
|
|
|
#story .condition.condition--add h4 {
|
|
|
|
margin: 0; }
|
|
|
|
#story .condition.condition--add h4 + div {
|
|
|
|
margin-top: 10px; }
|
2019-01-23 14:41:40 +00:00
|
|
|
#story .condition + .condition::before {
|
|
|
|
content: "OR";
|
|
|
|
display: block;
|
|
|
|
border-bottom: solid 2px;
|
|
|
|
height: 10px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
text-align: center;
|
|
|
|
text-shadow: 2px 2px 2px lightgray,-2px 2px 2px lightgray,2px -2px 2px lightgray,-2px -2px 2px lightgray; }
|
2019-01-25 16:09:18 +00:00
|
|
|
#story .condition + .condition .btn--delete {
|
|
|
|
margin-top: 20px; }
|
2019-01-24 13:27:04 +00:00
|
|
|
|
|
|
|
.flag-icon {
|
|
|
|
background-size: contain;
|
|
|
|
background-position: 50%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 1.33333em;
|
|
|
|
line-height: 1em; }
|
|
|
|
.flag-icon:before {
|
|
|
|
content: '\00a0'; }
|
|
|
|
.flag-icon.flag-icon-squared {
|
|
|
|
width: 1em; }
|
|
|
|
.flag-icon.en-GB {
|
|
|
|
background-image: url("/images/gb.svg"); }
|
|
|
|
.flag-icon.de-DE {
|
|
|
|
background-image: url("/images/de.svg"); }
|
|
|
|
.flag-icon.fr-FR {
|
|
|
|
background-image: url("/images/fr.svg"); }
|
|
|
|
.flag-icon.nl-NL {
|
|
|
|
background-image: url("/images/nl.svg"); }
|
|
|
|
|
|
|
|
.divToggle {
|
|
|
|
cursor: pointer; }
|
|
|
|
.divToggle:hover {
|
|
|
|
text-decoration: underline; }
|
|
|
|
.divToggle.opened + div {
|
|
|
|
display: block; }
|
|
|
|
.divToggle + div {
|
|
|
|
display: none; }
|
2019-03-27 12:36:09 +00:00
|
|
|
|
|
|
|
body.showTimeline #toggleTimeline {
|
|
|
|
background-color: pink; }
|
|
|
|
|
|
|
|
#timeline {
|
|
|
|
position: absolute;
|
|
|
|
left: 380px;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background: #eee;
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0; }
|
|
|
|
body.showTimeline #timeline {
|
|
|
|
opacity: 1;
|
|
|
|
pointer-events: auto; }
|
|
|
|
#timeline .vis-item.message {
|
|
|
|
background: lightgray; }
|
|
|
|
#timeline .vis-item.message.vis-range {
|
|
|
|
background-color: darkgray;
|
|
|
|
border-color: green; }
|
|
|
|
#timeline .vis-item.speech {
|
|
|
|
background-color: greenyellow;
|
|
|
|
border-color: green; }
|