-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
114 lines (99 loc) · 2.78 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<title>Mollie Components Examples</title>
<style>
body {
margin: 0;
padding: 60px 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 16px;
text-align: center;
}
h1 {
font-weight: 500;
margin: 0;
}
a {
color: #07f;
text-decoration: none;
}
a:hover,
a:focus {
text-decoration: underline;
}
.wrapper {
width: 600px;
margin: 0 auto;
}
.link-wrapper {
margin-top: 20px;
}
iframe {
display: block;
border: 1px solid #ddd;
width: 100%;
height: 500px;
margin-top: 40px;
}
</style>
</head>
<body>
<div class="wrapper">
<h1>Mollie Components Examples</h1>
<div class="link-wrapper">
<a href="https://docs.mollie.com/guides/mollie-components/overview"
>View documentation</a
>
|
<a href="https://docs.mollie.com/guides/mollie-components/reference"
>API reference</a
>
|
<a href="https://github.com/mollie/components-examples">GitHub</a>
</div>
<iframe src="example-1/"></iframe>
<div class="link-wrapper">
<a href="https://github.com/mollie/components-examples/tree/master/example-1"
>View Example 1 on GitHub</a
>
</div>
<iframe src="example-2/"></iframe>
<div class="link-wrapper">
<a href="https://github.com/mollie/components-examples/tree/master/example-2"
>View Example 2 on GitHub</a
>
</div>
<iframe src="example-3/"></iframe>
<div class="link-wrapper">
<a href="https://github.com/mollie/components-examples/tree/master/example-3"
>View Example 3 on GitHub</a
>
</div>
<iframe src="example-4/"></iframe>
<div class="link-wrapper">
<a href="https://github.com/mollie/components-examples/tree/master/example-4"
>View Example 4 on GitHub</a
>
</div>
<iframe src="example-5/"></iframe>
<div class="link-wrapper">
<a href="https://github.com/mollie/components-examples/tree/master/example-5"
>View Example 5 on GitHub</a
>
</div>
<iframe src="example-6/"></iframe>
<div class="link-wrapper">
<a href="https://github.com/mollie/components-examples/tree/master/example-6"
>View Example 6 on GitHub</a
>
</div>
</div>
</body>
</html>