-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
200 lines (171 loc) · 5.8 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>EOS WebComponents</title>
<!-- Load polyfills -->
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js" defer>
</script>
<!-- Load EOS CSS variables -->
<link rel="stylesheet" href="./assets/eos-variables.css">
<!-- Load components via WebComponents.waitFor -->
<script type="module">
window.WebComponents = window.WebComponents || {
waitFor(cb) { addEventListener('WebComponentsReady', cb) }
}
WebComponents.waitFor(async () => {
import('./components/alerts/index.js');
import('./components/buttons/index.js');
});
</script>
<link href="https://fonts.googleapis.com/css?family=Lato:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/eos-icons/dist/extended/css/eos-icons-extended.css" />
<style>
body {
font-family: 'Lato', Arial;
}
.presentation {
width: 70%;
max-width: 800px;
display: flex;
flex-direction: column;
margin: 100px auto;
}
eos-alert {
margin-top: 15px;
}
</style>
</head>
<body>
<!-- Global scope alert -->
<eos-alert type='success' scope='global'>
The new Patch Finder 2.0 will be released soon. You can <a href='#'>see the details</a> of this update.
</eos-alert>
<eos-alert type='success' scope='global' screen='mobile'>
The new Patch <a href='#'>see the details</a> of this update.
</eos-alert>
<div class="presentation">
<!-- Section scope alert -->
<h2>Section alerts</h2>
<eos-alert type='success' scope='section' title="Success section alert!">
Lorem ipsum dolor sit amet <a href='#'>see the details</a> consectetur adipisicing elit. Sapiente, fum?
</eos-alert>
<eos-alert type='info' scope='section' title="Success section alert!">
Lorem ipsum dolor sit amet <a href='#'>see the details</a> consectetur.
</eos-alert>
<eos-alert type='warning' scope='section' title="Warning section alert!">
Lorem ipsum <a href='#'>see the details</a> dolor sit amet consectetur.
</eos-alert>
<eos-alert type='danger' scope='section' title="ERROR: 404!">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sint quam quasi incidunt, animi ipsam <a href='#'>see the details</a>
similique asperiores natus, quibusdam necessitatibus minus saepe.
</eos-alert>
<!-- Inline scope alert -->
<h2>Inline alerts</h2>
<eos-alert type='success' scope='inline'>
Lorem ipsum dolor sit <a href="#">Test</a> amet consectetur adipisicing elit. Vitae, modi?
</eos-alert>
<eos-alert type='info' scope='inline' close='false'>
<a href="#">Test</a> Lorem ipsum dolor sit.
</eos-alert>
<eos-alert type='warning' scope='inline'>
Lorem ipsum <a href="#">Test</a> dolor sit.
</eos-alert>
<eos-alert type='danger' scope='inline' close='false'>
Lorem ipsum, dolor sit amet consectetur <a href="#">Test</a> adipisicing.
</eos-alert>
<h2>Primary button</h2>
<div style='display:flex'>
<eos-button type='primary'>
Button
</eos-button>
<eos-button type='primary-outline'>
Outline
</eos-button>
<eos-button type='primary' state='disabled'>
Disabled
</eos-button>
<eos-button type='primary-outline' state='disabled'>
Disabled
</eos-button>
</div>
<h2>Secondary button</h2>
<div style='display:flex'>
<eos-button type='secondary'>
Button
</eos-button>
<eos-button type='secondary' state='disabled'>
Disabled
</eos-button>
</div>
<h2>Secondary inverse button</h2>
<div style='display:flex; background: #686565; padding: 24px;'>
<eos-button type='secondary-inverse'>
Button
</eos-button>
<eos-button type='secondary-inverse' state='disabled'>
Disabled
</eos-button>
</div>
<h2>Danger button</h2>
<div style='display:flex;'>
<eos-button type='danger'>
Button
</eos-button>
<eos-button type='danger' state='disabled'>
Disabled
</eos-button>
</div>
<h2>Icon button</h2>
<div style='display:flex'>
<eos-button type='secondary' icon='autorenew'>
Button
</eos-button>
<eos-button type='primary' icon='autorenew'>
Button
</eos-button>
<eos-button type='primary-outline' icon='autorenew'>
Button
</eos-button>
<eos-button type='danger' icon='autorenew'>
Button
</eos-button>
</div>
<h2>Only icons</h2>
<div style='display:flex'>
<eos-button type='secondary' icon='add'></eos-button>
<eos-button type='primary' icon='create'></eos-button>
<eos-button type='primary-outline' icon='autorenew'></eos-button>
<eos-button type='danger' icon='autorenew'></eos-button>
</div>
<h2>Large buttons</h2>
<div>
<eos-button type='secondary' size='block'>
Button
</eos-button>
<eos-button type='primary' size='block'>
Button
</eos-button>
</div>
<h2>Small buttons</h2>
<div style='display:flex'>
<eos-button type='secondary' size='small'>
Button
</eos-button>
<eos-button type='primary' size='small'>
Button
</eos-button>
<eos-button type='secondary' size='small' icon='autorenew'>
Button
</eos-button>
<eos-button type='primary' size='small' icon='autorenew'>
Button
</eos-button>
<eos-button type='secondary' size='small' icon='add'></eos-button>
<eos-button type='primary' size='small' icon='create'></eos-button>
</div>
</div>
</body>
</html>