-
Notifications
You must be signed in to change notification settings - Fork 2
/
calculator.html
77 lines (69 loc) · 2.6 KB
/
calculator.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width">
<link rel="stylesheet" href="includes/style.css">
<!-- <link rel="stylesheet" href="https://cdn.rawgit.com/hadasnadan/ion.rangeSlider/master/src/ion.rangeSlider.css">
<link rel="stylesheet" href="https://cdn.rawgit.com/hadasnadan/ion.rangeSlider/master/src/ion.rangeSlider.skinFlat.css"> -->
<link rel="stylesheet" href="includes/ion.rangeSlider.css">
<link rel="stylesheet" href="includes/ion.rangeSlider.skinFlat.css">
<!--<link rel="stylesheet" href="https://cdn.rawgit.com/shenkarlab/onAge67/master/includes/ion.rangeSlider.css">
<link rel="stylesheet" href="https://cdn.rawgit.com/shenkarlab/onAge67/master/includes/ion.rangeSlider.skinFlat.css">-->
<!-- jQuery library -->
<script type="text/javascript" src="includes/jquery-2.1.4.min.js"></script>
<!-- controller and calculator scripts -->
<script type="text/javascript" src="includes/controller.js"></script>
<script type="text/javascript" src="includes/calculator.js"></script>
<script type="text/javascript" src="includes/ion.rangeSlider.min.js"></script>
<title>כשתהיו בני 67</title>
</head>
<body>
<div id="wrapper">
<section id="sliderContainer">
<section id="result">
<section id="aboutLink">
<a href="about.html?ref=calculator">איך הגענו לזה?</a>
</section>
<div class="clear"></div>
<section id="resultsWrapper">
<section id="resultsContainer">
<section id="assumpContainer" class="bigger">
<section id="assumpTlt">
גובה הפנסיה שאתם ניחשתם
</section>
<section id="assumpTxtContainer">
₪
<section id="assumpTxt"></section>
</section>
</section>
<section id="pensionContainer" class="smaller">
<section id="pensionTlt">
גובה הפנסיה שעלולה להיות לכם
</section>
<section id="pensionTxtContainer" class="regularTxt">
₪
<section id="pensionTxt"></section>
</section>
</section>
<section id="resultsArrow" class="whiteArrow"> </section>
</section>
<section id="logoContainerCalc">
<section id="shaul">
<!-- <section id="shauPic"></section> -->
<!-- <section id="shaulTxt"></section> -->
</section>
</section>
</section>
</section>
<section id="sliders"> </section>
</section>
</div>
<script>
//$(window).resize(setHeights);
(function() {
//setHeights();
loadCalculator();
})();
</script>
</body>
</html>