This repository was archived by the owner on Nov 15, 2023. It is now read-only.
forked from elijh/design-system
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
137 lines (130 loc) · 6.49 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🧰 Page Builder</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="properties-panel">
<h2>Properties</h2>
<h3>Styles</h3>
<label for="heading-font">Heading Font Family</label>
<select id="heading-font" class="custom-arrow">
<option value="Helvetica, Arial, sans-serif">Helvetica / Arial</option>
<option value="'Times New Roman', Times, serif">Times New Roman</option>
<option value="'Courier New', Courier, monospace">Courier New</option>
<option value="'Arial Black', Gadget, sans-serif">Arial Black</option>
</select>
<label for="primary-color">Primary Color</label>
<input type="color" id="primary-color" value="#333">
<h3>Header</h3>
<label for="header-h1">H1 Text</label>
<input type="text" id="header-h1" value="🧰 Page Builder">
<label for="header-button">Button Text</label>
<input type="text" id="header-button" value="Primary Button">
<h3>Intro Section</h3>
<label for="intro-h2">H2 Text</label>
<input type="text" id="intro-h2" value="Quickly build research-based, durable web experiences">
<label for="intro-paragraph">Paragraph Text</label>
<input type="text" id="intro-paragraph" value="👈 Fill out the properties panel on the left, then click Export.">
<label for="intro-button">Button Text</label>
<input type="text" id="intro-button" value="Secondary Button">
<h3>Feature Section 1</h3>
<label for="feature-1-h3">H3 Text</label>
<input type="text" id="feature-1-h3" value="Default Feature Heading">
<label for="feature-1-paragraph">Paragraph Text</label>
<input type="text" id="feature-1-paragraph" value="Default paragraph">
<h3>Feature Section 2</h3>
<label for="feature-2-h3">H3 Text</label>
<input type="text" id="feature-2-h3" value="Default Feature Heading">
<label for="feature-2-paragraph">Paragraph Text</label>
<input type="text" id="feature-2-paragraph" value="Default paragraph">
<h3>Feature Section 3</h3>
<label for="feature-3-h3">H3 Text</label>
<input type="text" id="feature-3-h3" value="Default Feature Heading">
<label for="feature-3-paragraph">Paragraph Text</label>
<input type="text" id="feature-3-paragraph" value="Default paragraph">
<h3>Highlight Section</h3>
<label for="highlight-h3">H3 Text</label>
<input type="text" id="highlight-h3" value="Default Highlight Heading">
<label for="highlight-paragraph">Paragraph Text</label>
<input type="text" id="highlight-paragraph" value="Default paragraph">
<label for="highlight-button">Button Text</label>
<input type="text" id="highlight-button" value="Secondary Button">
<h3>Footer</h3>
<label for="footer-paragraph">H3 Text</label>
<input type="text" id="footer-paragraph" value="Made with ✊ by Science & Design">
<div class="properties-button">
<button id="export-button" class="primary">Export</button>
</div>
</div>
<div class="main-page">
<header>
<div class="wrapper">
<h1 id="main-h1"></h1>
<button id="main-header-button" class="primary main-page-element"></button>
</div>
</header>
<section class="intro-section">
<div class="wrapper">
<h2 id="main-h2"></h2>
<p id="main-paragraph"></p>
<button id="main-intro-button" class="main-page-element"></button>
</div>
</section>
<section class="feature-section">
<div class="wrapper">
<div class="card">
<div class="description">
<h3 id="h3-feature-1"></h3>
<p id="paragraph-feature-1"></p>
</div>
<svg width="16.18mm" height="auto" viewBox="0 0 1618 1000">
<rect x="0" y="0" width="1618" height="1000" fill="#ccc"/>
</svg>
</div>
<div class="card">
<div class="description flip">
<h3 id="h3-feature-2"></h3>
<p id="paragraph-feature-2"></p>
</div>
<svg width="16.18mm" height="auto" viewBox="0 0 1618 1000">
<rect x="0" y="0" width="1618" height="1000" fill="#ccc"/>
</svg>
</div>
<div class="card">
<div class="description">
<h3 id="h3-feature-3"></h3>
<p id="paragraph-feature-3"></p>
</div>
<svg width="16.18mm" height="auto" viewBox="0 0 1618 1000">
<rect x="0" y="0" width="1618" height="1000" fill="#ccc"/>
</svg>
</div>
</div>
</section>
<section class="highlight-section">
<div class="wrapper">
<div class="card">
<div class="description">
<h3 id="h3-highlight"></h3>
<p id="paragraph-highlight"></p>
<button id="button-highlight" class="main-page-element"></button>
</div>
<svg width="16.18mm" height="auto" viewBox="0 0 1618 1000">
<rect x="0" y="0" width="1618" height="1000" fill="#ccc"/>
</svg>
</div>
</div>
</section>
<footer>
<div class="wrapper">
<p id="paragraph-footer"></p>
</div>
</footer>
</div>
<script src="scripts.js"></script>
</body>
</html>