-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmobile.html
96 lines (80 loc) · 2.88 KB
/
mobile.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
<html>
<head>
<title>Czar Mobile</title>
<style>
body { margin: 0px; background: #FFFFFF; color: #000000; font: 100% sans-serif; }
div#globalPadding { padding: 8px; }
div.internal { display: none; }
form a { font-size: 80%; margin-right: 10px; }
form a.missing { color: #888888; text-decoration: none; }
form a.invalid { color: #FF0000; text-decoration: line-through; }
form.marked a.missing { text-decoration: line-through; }
form { margin: 0; }
form.deleted { display: none; }
form.marked * { text-decoration: line-through; }
form.marked input { color: #000000; }
form.marked input.countdown { color: #AA0000; text-decoration: none; }
div#items > form.shaded { background: #DDD; }
div#items > form.shaded * { background: #DDD; }
div#items > form.shaded input { background: #DDD; border-color: #DDD }
input { font: 100% sans-serif; border: 1px solid #FFF; margin-right: 10px; }
input.dirty { border: 1px solid #77F !important }
input.empty { color: #888; }
input.focused { border: 1px solid #AAA !important }
input.inflight { border: 1px solid #BCF !important }
span.tooltip_wrap { position: relative; }
span.tooltip input { margin-right: 0; font-size: 80% }
span.tooltip {
position: absolute;
visibility: hidden;
padding: 3 3 3 3;
background: #FFF; border: 1px solid #888;
}
.ui-tooltip-content {
font-size: 60%;
}
#sm2-container {
width: 1px;
height: 1px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script src="https://apis.google.com/js/api.js" async defer></script>
<script src="config.js"></script>
<script src="stateserver.js"></script>
<script src="cookie.js"></script>
<script src="tags.js"></script>
<script src="who-data.js"></script>
<script src="notifier.js"></script>
<script src="googleaccess.js"></script>
<script src="czar.js"></script>
</head>
<body onload="start_czar(true)">
<div id=jobs style="float: right; text-align: right"></div>
<div style="margin-left: 10">
<h2 style="margin-top: 0"><a href="index.html">Czar</a> Mobile</h2>
<!-- id is "aaaaa" to make it sort before most users. --->
<span id='whoami.selector'>
<!-- The whoami select element gets auto-populated by XXX -->
Who are you? <select id="whoami">
<option id="whoami_sortkey_aaaaa" value="">Nobody</option>
</select>
<input type="text" style="display:none" id="whatamidoing">
</span>
<br>
<span id="mystatus"></span>
<br>
<a id="hunt_url" target="_blank" href="">Hunt Site</a>
<a id="team_url" target="_blank" href="">Team site</a>
</div>
<br clear=left>
<hr>
<!-- visible puzzles -->
<div id=items></div>
<!-- nonvisible puzzles -->
<div id=unsorted class=internal></div>
<div id=tmp class=internal></div>
</body>
</html>