-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkndex.html
198 lines (191 loc) · 4.83 KB
/
kndex.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<html>
<head>
<title> Title? Fuck you! </title>
<script src="target/scala-2.12/v-dot-zero-dot-one-fastopt.js"></script>
<style type="text/css">
body {
background-color: #202020;
font-family: "Andale Mono";
}
.container::before {
content: attr(id);
text-align: center;
font-size: .8em;
text-decoration: underline;
display: block;
width: 100%;
color: #707070;
border-bottom: 2px double #505050;
margin-bottom: 2em;
}
.container {
padding: .4em;
border-style: dotted;
border-width: .2em;
margin-top: 1em;
vertical-align: top;
}
#panel > .left {
float: left;
clear: left;
width: 10%;
font-size: 2em;
}
#panel > .right {
width: 80%;
margin-left: 15%;
}
#panel { border: none }
#display {
background-color: #302030;
color: #807080;
border-color: #504050;
}
#sleeping_display {
text-align: center;
border-color: limegreen;
color: #c070a0;
}
#talking_shit_display {
width: 1%;
border-color: #e9a5af;
text-align: center;
}
.blinky {
animation: blinker 1s linear infinite;
}
@keyframes blinker { 50% { opacity: 0; } }
#talking_shit_display.on {
background-color: forestgreen;
animation: blinker 1s linear infinite;
}
#talking_shit_display.off {
background-color: orangered;
}
#talking_shit_display::before {
content: 'CLOCL ME!!!';
}
#sleeping_display::before { display: none }
#probabilities {
border-color: aquamarine;
width: 75%;
margin-left: 1%;
}
#probabilities::before { display: none }
#logstash {
border-color: #500020;
background-color: #200000;
}
.category {
border: 1px dashed #606060;
color: #6892e9;
font-size: .8em;
}
.category > .name,
.category > .values {
display: inline-block;
padding: .2em;
}
.category > .name {
width: 10%;
}
.category > .values {
width: 84%;
border-left: 3px double blanchedalmond;
}
.category > .values > .value {
display: inline-block;
border-right: 2px double #e9a5af;
padding: .4em;
width: 20%;
}
.category > .values > .value.instructed {
color: #e9a83b
}
.category > .values > .value.overriden {
color: #88e989;
}
.category > .name.instructed {
color: #e9503c;
}
.probability::before {
content: ' [';
}
.probability::after {
content: '] ';
}
.probability {
font-size: 1.1em;
font-weight: bold;
color: #909090;
}
.overriden .probability {
color: #e98559;
}
#selections {
background-color: #b2d6e9;
}
#selections > div::before { content: attr(id) ":"; }
#sleep_min,
#sleep_max {
font-size: .5em;
border-style: solid;
border-color: #808080;
border-width: 0;
}
#sleep_min {
color: #646ee9;
border-bottom-width: 1px;
}
#sleep_max {
color: #e9da65;
border-top-width: 1px;
}
/*
* Do not remove the @namespace line -- it's required for correct functioning
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
/*
* Hide tab bar, navigation bar and scrollbars
* !important may be added to force override, but not necessary
* #content is not necessary to hide scroll bars
*/
#TabsToolbar {visibility: collapse;}
#navigator-toolbox {visibility: collapse;}
browser {margin-right: -14px; margin-bottom: -14px;}
</style>
</head>
<body>
<div class="container" id="display"
onclick="(() => {
window.open(
window.location.href,
Math.random(),
'titlebar=0,close=0'
)
})();"
></div>
<div class="container" id="panel">
<div class="container left" id="sleeping_display">
<div id="sleep_min"></div>
<div id="countdown"></div>
<div id="sleep_max"></div>
</div>
<div class="container left" id="talking_shit_display"
onclick="(() => {
console.log('hi')
console.log(v.toggle)
v.toggle()
})()"
>
CLICK ME!
</div>
<div class="container left" id="selections">
<div id="j"> WAT </div>
<div id="i"> WOT </div>
</div>
<div class="container right" id="probabilities"></div>
</div>
<div class="container" id="logstash"></div>
</body>
</html>