-
Notifications
You must be signed in to change notification settings - Fork 0
/
grow-chart-page.html
112 lines (94 loc) · 4.13 KB
/
grow-chart-page.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
<!--
All IDs and classes for this project are prefixed with 'grc' to prevent a clash with other
styles and scripts. Please maintain this format in future edits.
-->
<link rel="stylesheet" type="text/css" href="grow-chart-page.css"/>
<script src="grow-chart-data.js"></script>
<script src="grow-chart-page.js"></script>
<div id="grc">
<div id="grc-input">
<h1>Create your own Grow chart</h1>
<p>Lorem ipsum dolor sit amet, Lorem ipsum dolor sit amet, Lorem ipsum dolor sit amet, Lorem ipsum dolor sit amet</p>
<!--user picks data which is most relevant to them-->
<div id="grc-location-container">
<p>Would you like a chart for the north or south of Britain?</p>
<!--north-->
<input id="grc-loc-n" type="radio" name="britain-location" class="grc-location-radio" value="0" checked></input>
<label for="grc-loc-n">north</label>
<!--south-->
<input id="grc-loc-s" type="radio" name="britain-location" class="grc-location-radio" value="1"></input>
<label for="grc-loc-s">south</label>
</div>
<div id="grc-scroll"><!-- list of plants for the user to chose from -->
<div id="grc-scroll-controls">
<div id="grc-scroll-left" class="grc-scroll-button"></div>
<div id="grc-scroll-right" class="grc-scroll-button"></div>
<div id="grc-scroll-bar">
<div id="grc-scroll-bar-bobbet"></div>
</div>
</div><!--grc-scroll-controls-->
<div id="grc-scroll-element-container">
<!--PLANT ELEMENT. Dynamically populated-->
<!--<div class="grc-scroll-plant" data-plant-id="0" id="grc-plant-0">
<div class="grc-scroll-plant-img"></div>
<div class="grc-scroll-plant-title">aubergine</div>
</div>-->
<!--end plant-->
</div>
</div>
<!--plant title hidden by default. Added incase it was needed-->
<h2 id="grc-plant-title"><!--content changes dynamically--></h2>
<div id="grc-chart-button" class="grc-button"><span class="grc-button-icon"></span><!--Add to chart (see CSS)--></div>
<a id="grc-buy-button" class="grc-button" href=""><span class="grc-button-icon"></span>Buy online</a>
<a id="grc-article-button" class="grc-button" href="">
<span class="grc-button-icon"></span>
<span id="grc-article-button-text"><!--content changes dynamically--></span>
</a>
<div id="grc-clear-chart" class="grc-button" data-alternative-text="Are you sure you want to start again?">Start Again</div>
</div><!--/grc-input-->
<div id="grc-output">
<h1 id="grc-result-title">Your personalised grow chart</h1>
<a id="grc-print" class="grc-button"><span class="grc-button-icon"></span>Print friendly version</a>
<div id="grc-key">
Add your key here
<!--LOVE YOU JAMES!-->
</div>
<div id="grc-table">
<div id="grc-top-row" class="grc-row">
<div class="grc-cell"></div>
<!--month names added in CSS to be responsive-->
<div class="grc-cell"></div><!--j-->
<div class="grc-cell"></div><!--f-->
<div class="grc-cell"></div><!--m-->
<div class="grc-cell"></div><!--a-->
<div class="grc-cell"></div><!--m-->
<div class="grc-cell"></div><!--j-->
<div class="grc-cell"></div><!--j-->
<div class="grc-cell"></div><!--a-->
<div class="grc-cell"></div><!--s-->
<div class="grc-cell"></div><!--o-->
<div class="grc-cell"></div><!--n-->
<div class="grc-cell"></div><!--d-->
</div>
<div id="grc-data-rows">
<!--dynamically added-->
<!--NB: see CSS/data for what the class names means-->
<!--<div class="grc-row">
<div class="grc-cell grc-symbol-SI"></div>
<div class="grc-cell grc-symbol-NO"></div>
<div class="grc-cell grc-symbol-NO"></div>
<div class="grc-cell grc-symbol-NO"></div>
<div class="grc-cell grc-symbol-NO"></div>
<div class="grc-cell grc-symbol-SC"></div>
<div class="grc-cell grc-symbol-SO"></div>
<div class="grc-cell grc-symbol-PI"></div>
<div class="grc-cell grc-symbol-PO"></div>
<div class="grc-cell grc-symbol-HR"></div>
<div class="grc-cell grc-symbol-NO"></div>
<div class="grc-cell grc-symbol-NO"></div>
<div class="grc-cell grc-symbol-NO"></div>
</div>-->
</div><!--/grc-data-rows-->
</div><!--/grc-table-->
</div><!--/grc-output-->
</div>