-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsize.html
165 lines (130 loc) · 5.88 KB
/
size.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>QuickSize™</title>
<link rel="icon" type="image/png" href="assets/img/favicon.png" />
<!--Core CSS -->
<link rel="stylesheet" href="assets/css/app.css">
<link rel="stylesheet" href="assets/css/bulma.css">
<link rel="stylesheet" href="assets/css/demo.css">
<link rel="stylesheet" href="assets/css/app.css">
<link rel="stylesheet" href="assets/css/quick-size.css">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Alegreya+Sans+SC:100,400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,500" rel="stylesheet">
</head>
<body>
<section id="start" class="section is-medium">
<div class="container">
<div class="title-wrapper has-text-centered">
<div class="title is-3 is-spaced">
What's my size?
</div>
<div class="subtitle is-5 is-muted">Finding the right clothing size has never been easier.</div>
<div class="subtitle is-5 is-muted">Use <span class="quick">Quick Size</span> Type in 5 values to instantly receive your size.
</div>
</div>
</div>
</section>
<section>
<div class="parent">
<!-- Form get size -->
<form name="sizeForm" class="size-calculator" action="quick-size-result.html">
<!-- Gender -->
<div class="gender">
<div class="title">
<h4>Gender:</h4>
</div>
<label class="radio_btn">
<input type="radio" onclick="manAvatar()" name="gender" id="male" value="male" required />
<span>Male</span>
</label>
<label class="radio_btn">
<input type="radio" onclick="femaleAvatar()" name="gender" id="female" value="female" required />
<span>Female</span>
</label>
</div>
<!-- Type -->
<div class="type">
<div class="title">
<h4>Type:</h4>
</div>
<label class="radio_btn">
<input type="radio" name="type" value="T-shirts" required />
<span>T-shirts/Dresses</span>
</label>
<label class="radio_btn">
<input type="radio" name="type" value="Pants" required />
<span>Pants</span>
</label>
</div>
<div class="details">
<div class="title">
<h4>Height</h4>
</div>
<input type="number" name="Height" id="btn-height" min="150" max="210" required />
<span>cm <i class="show-toolTip height fa fa-question-circle"></i></span>
</div>
<div class="details">
<div class="title">
<h4>Bust</h4>
</div>
<input class="btn" type="number" name="Bust" id="btn-bust" min="87" max="114" required />
<span>cm <i class="show-toolTip bust fa fa-question-circle"></i></span>
</div>
<div class="details">
<div class="title">
<h4>Waist</h4>
</div>
<input type="number" name="Waist" id="btn-waist" min="75" max="103" required />
<span>cm <i class="show-toolTip waist fa fa-question-circle"></i></span>
</div>
<div class="details">
<div class="title">
<h4>Hips</h4>
</div>
<input type="number" name="Hips" id="btn-hips" min="86" max="113" required />
<span>cm <i class="show-toolTip hips fa fa-question-circle"></i></span>
</div>
<div class="details">
<div class="title">
<h4>Inseam</h4>
</div>
<input type="number" name="Inseam" id="btn-inseam" min="81" max="83" required />
<span>cm <i class="show-toolTip inseam fa fa-question-circle"></i></span>
</div>
<div class="details">
<button class="submit button big-button primary-button upper-button rounded raised">Find My Size »</button>
</div>
</form>
<!-- human img -->
<div class="human-img"></div>
<!-- Pop UP -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h4></h4>
<p></p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="footer-flex">
<div class="nephos">
<img class="logo" src="assets/img/logo/top_white.png">
<span class="logo-text">TOPSHOP</span>
</div>
</div>
</div>
</footer>
<!-- Concatenated plugins -->
<script src="assets/js/size.js"></script>
</body>
</html>