-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
171 lines (163 loc) · 5.6 KB
/
faq.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
<!DOCTYPE html>
<html>
<head>
<title>FAQ - SBHS Countdown</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link href='http://fonts.googleapis.com/css?family=Roboto:100,300' rel='stylesheet' type='text/css'>
<style type="text/css">
.centered {
text-align: center;
position: absolute;
left: 0px;
width: 100%;
top: 5%;
overflow: visible;
display: block;
/*top: 50%;
left: 50%;
height: 300px;
*//*width: 700px;*//*
margin-top: -200px;
margin-left: -400px;*/
}
.align {
text-align: center;
position: absolute;
left: 0px;
width: 100%;
overflow: visible;
display: block;
}
.FAQ {
cursor: hand;
cursor: pointer;
border: 1px solid #CCC;
width: auto;
margin-top: 10px;
line-height: 1.2em;
padding: 10px;
font-family: 'Roboto', sans-serif;
font-weight: 100;
font-size: 23px;
color: #D6D6D6;
}
.ANS {
display:none;
margin-top:7px;
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 15px;
color: #ffffff;
text-align: left;
}
#heading {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 40px;
color: #D6D6D6;
padding-bottom:0.2em;
padding-top:0em;
line-height:0.8em;
}
#body {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 25px;
color: #D6D6D6;
line-height:0.8em;
}
#faq{
position: fixed;
bottom: 7px;
left: 10px;
font-family: "Roboto", sans-serif;
text-align: left;
font-weight: 100;
font-size: 15px;
color: #d7d7d7;
border-left-width: 15px;
z-index: 10;
}
#bottom {
position: fixed;
bottom: 7px;
font-family: "Roboto", sans-serif;
text-align: center;
font-weight: 100;
font-size: 15px;
}
#copyright{
position: fixed;
bottom: 10px;
right: 10px;
font-family: "Roboto", sans-serif;
text-align: right;
font-weight: 100;
font-size: 12px;
color: #d7d7d7;
}
</style>
<script>
//disable selection
window.onload = function() {
var labels = document.getElementsByTagName('label');
for (var i = 0; i < labels.length; i++) {
disableSelection(labels[i]);
}
};
//toggle FAQ
function toggle(Info) {
var CState = document.getElementById(Info);
CState.style.display = (CState.style.display != 'block')
? 'block' : 'none';
}
function disableSelection(element) {
if (typeof element.onselectstart != 'undefined') {
element.onselectstart = function() { return false; };
} else if (typeof element.style.MozUserSelect != 'undefined') {
element.style.MozUserSelect = 'none';
} else {
element.onmousedown = function() { return false; };
}
}
</script>
</head>
<body bgcolor="#000000">
<div id="container" class="centered" >
<div id="heading"><b>FAQ</b></div>
<div id="body">
<DIV class="FAQ" onclick="toggle('faq1')">
School portal has a countdown too!
<div id="faq1" class="ANS">
<li>Portal countdown is often inaccurate by as much as a minute!</li>
<li>You go through LOGIN PROMPT after LOGIN PROMPT, then waiting for it to load - to see a <sub>tiny</sub> ticker.</li>
<br>
</div>
</DIV>
<DIV class="FAQ" onclick="toggle('faq2')">
How can I get here with 1-Click?
<div id="faq2" class="ANS">
<li>Go to the App Drawer.</li>
<li>Look for this app.</li>
<li>Long hold this app and drag it to your desired homescreen location.</li>
<hr width="130" align="left">
Android app version <b>2.0</b>, check website for updates.
Web version also available @ <br>http://www.sydneyboyshigh.asia
</div>
</DIV>
<DIV class="FAQ" onclick="toggle('faq3')">
What a great domain name!
<div id="faq3" class="ANS">
ikr. Got it for free last year, but it expires in September 2013 and will cost $10 to renew. You can support us by donating $2.
(Contact me by clicking on "Give Feedback"... Hmm, maybe I should start a kickstarter)<br>
You can also support us with code on <a href="https://github.com/0xJerry/SBHS-Countdown" target="_blank" style="color: #00aced">GitHub</a>.
</div>
</DIV>
<br>
<br>
</div>
</div>
<div id="bottom" class="align"><a href="https://docs.google.com/forms/d/1J-FFPzJkBjCOY4U73xIIe_UwwMqMevmX6T9FZKLmQA0/viewform" target="_blank" style="color: #00aced">Give Feedback</a></div>
<div id="copyright">© Jerry Yip 2013<br>Ported by Kenny Liu</div>
</body>
</html>