-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
95 lines (84 loc) · 3.59 KB
/
index.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
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>OnionOrNot</title>
<!--[if lt IE 9]> HTML5Shiv
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet"
media="only screen and (max-width: 580px)" href="css/mobile.css">
<!-- <link rel="stylesheet"
media="only screen and (min-width: 641px) and (max-width: 800px)" href="css/tablet.css"> -->
<link rel="stylesheet"
media="only screen and (min-width: 581px)" href="css/less.css">
</head>
<!-- <div id="wrapper"> -->
<body>
<!-- Begin navbar -->
<nav class="top cf">
<ul class="cf">
<li><a href="">OnionOrNot</a></li>
<li><a href="">About</a></li>
</ul>
</nav>
<!-- End navbar -->
<div id="quiz">
<h1 id="headline"></h1>
<div id="white">
<div id ="gloss">
<!-- <div id="gradient"></div> -->
<div id="feedback" class="cf">
<h2 class="message">filler</h2>
<ul class="data cf">
<li>
<h3>Source:</h3>
<a target="_blank" id="source" class ="" href=""></a>
</li>
<!-- Begin social sharing buttons -->
<li class ="social">
<h3>
Share:
</h3>
<div class="social-buttons cf">
<a class="socialite facebook-like" href="http://www.facebook.com/sharer/sharer.php" data-layout="box_count" data-send="true" data-href="http://raddevon.github.io/onionornot/"target="_blank">
<img src="imgs/fb.png">
</a>
<a class="socialite twitter-share" href="http://twitter.com/share" data-url="http://raddevon.github.io/onionornot/" data-count="vertical"target="_blank">
<img src="imgs/twitter.png">
</a>
</div>
</li>
<!-- End social sharing buttons -->
</ul>
<button id="next">Next Headline</button>
</div>
<div id="answer">
<button id="onion">Onion</button>
<button id="not">Not Onion</button>
</div>
</div>
</div>
</div>
<nav class="bottom cf">
<ul class="cf">
<li><a href="">OnionOrNot</a></li>
<li><a href="">About</a></li>
</ul>
</nav>
<!-- Script imports -->
<script type="text/javascript" src="js/jquery.js"></script>
<!-- <script id="desktop" type="text/javascript" src="js/js.js"></script> -->
<script type="text/javascript" src="js/jquery.mobile.custom.js"></script>
<script type="text/javascript" src="js/socialite.min.js"></script>
<script type="text/javascript" src="js/mobile.js"></script>
</body>
<!-- </div> -->
</html>