-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.html
More file actions
75 lines (67 loc) · 1.76 KB
/
store.html
File metadata and controls
75 lines (67 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BoquilaStore</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/supabase/2.39.7/supabase.min.js"></script>
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #f0f9f4;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
.container {
width: 100%;
max-width: 640px;
padding: 20px;
box-sizing: border-box;
}
h1 {
color: #38b275;
font-size: 2rem;
text-align: center;
margin-bottom: 0;
}
.subtitle {
text-align: center;
color: #555;
margin-bottom: 30px;
font-size: 1rem;
}
.form-container {
width: 100%;
height: 100vh;
overflow: hidden;
position: relative;
padding-bottom: 20px;
}
.form-container iframe {
width: 100%;
height: 100%;
border: none;
}
@media (max-width: 480px) {
h1 {
font-size: 1.8rem;
}
.subtitle {
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>I want a Boquila Shirt too!</h1>
<p class="subtitle">Please fill out the form below to order your shirt</p>
<div class="form-container">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSfsKgde-qB6MearYGfaIB0xcavMeEQ13iq89cDbOM8Ln_RgTA/viewform?embedded=true" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
</div>
</body>
</html>