-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchoices.html
More file actions
102 lines (100 loc) · 3.85 KB
/
choices.html
File metadata and controls
102 lines (100 loc) · 3.85 KB
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
<!DOCTYPE html>
{% autoescape true %}
<html ng-app>
<head>
<link rel="stylesheet" href="app/css/bootstrap.min.css">
<link rel="stylesheet" href="app/css/bootstrap-responsive.min.css">
<link type="text/css" rel="stylesheet" href="/stylesheets/main.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="pencilcake icon" href="app/img/pencilcake_favicon.ico">
<!--<script src="app/lib/angular/angular.js"></script>-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src="app/js/bootstrap.min.js"></script>
<script src="app/js/choice.js"></script>
<script>
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
</script>
<script type="text/javascript">
$(document).ready(function() {
$(window).resize(
function(){
$('.bubble').width($(window).width()/4.5);
$('.bubble').height($('.bubble').width());
$('.pushme').css('top', ($(window).height()*.4)+'px');
$('.shadow').css('top', ($(window).height()*.42)+'px');
$('p.choice').css('font-size',($(window).width()/17)+'px');
}
);
$(window).resize();
});
</script>
</head>
<body>
<div class="container-fluid">
<div id="header" class="row" >
<div class="col-md-10 col-lg-8 col-md-offset-1 col-lg-offset-2 hidden-xs hidden-s">
<div class="row" >
<div class="col-xs-12 col-sm-12 col-md-12 logoline">
<p class="tagline" id="tagleft">fictitious</p>
<a class="homelink" href="/">
<img id="logo" class="img-responsive" src="app/img/pencilcake.png"/>
</a>
<p class="tagline" id="tagright">nibbling</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="homelink" href="/">
<p class="brand" id="bigname">snackwrite</p>
</a>
</div>
</div>
</div>
<div class="col-xs-12 col-s-12 visible-xs visible-s">
<div class="row logoline" >
<img id="tinylogo" class="img-responsive" src="app/img/pencilcake_s.png"/>
<p id="tinyname" class="brand">snackwrite</p>
</div>
</div>
</div>
<div id="pickone" class="row">
<div class="col-xs-12 col-md-10 col-lg-8 col-md-offset-1 col-lg-offset-2">
<div class="row">
<div class="col-xs-6 col-sm-4 col-md-4">
<div class="read bubble shadow">
</div>
<a class="read bubble pushme">
<p class="choice">read</p>
</a>
</div>
<div class="col-xs-6 col-sm-4 col-md-4">
<div class="write bubble shadow">
</div>
<a class="write bubble pushme" href="word">
<p class="choice">write</p>
</a>
</div>
<div class="col-xs-6 col-sm-4 col-md-4">
<div class="snack bubble shadow">
</div>
<a class="snack bubble pushme">
<p class="choice">snack</p>
</a>
</div>
</div>
</div>
</div>
</body>
</html>
{% endautoescape %}