-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 2.16 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 2.16 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body style="margin:none; padding:none;">
<div class="header">
<h3 class="primary">Material Design 3 Web</h3>
</div>
<div class="divider"></div>
<div class="container">
<div class="display-inlineblock card primary">
<h1 class="mt-0">Simple buttons</h1>
<h2>Filled</h2>
<a href="" class="button filled display-block primary mr-10">Primary button</a>
<a href="" class="button filled display-block secondary mt-10 mr-10">Secondary button</a>
<a href="" class="button filled display-block tertiary mt-10 mr-10 mb-20">Tertiary button</a>
<h2>Tonal</h2>
<a href="" class="button filled display-block primary tonal mr-10">Primary tonal button</a>
<a href="" class="button filled display-block secondary tonal mt-10 mr-10">Secondary tonal button</a>
<a href="" class="button filled display-block tertiary tonal mt-10 mr-10 mb-20">Tertiary tonal button</a>
</div>
<div class="display-inlineblock card secondary">
<h1 class="mt-0">Animated buttons</h1>
<h2>Filled</h2>
<a href="" class="button filled display-block primary animated mr-10">Primary button</a>
<a href="" class="button filled display-block secondary animated mt-10 mr-10">Secondary button</a>
<a href="" class="button filled display-block tertiary animated mt-10 mr-10 mb-20">Tertiary button</a>
<h2>Tonal</h2>
<a href="" class="button filled display-block primary tonal animated mr-10">Primary tonal button</a>
<a href="" class="button filled display-block secondary tonal animated mt-10 mr-10">Secondary tonal button</a>
<a href="" class="button filled display-block tertiary tonal animated mt-10 mr-10 mb-20">Tertiary tonal button</a>
</div>
<div class="display-inlineblock card tertiary">
<h1 class="mt-0">Switch</h1>
<input class="switch primary display-inlineblock" type="checkbox" name="primary-switch">
<input class="switch secondary display-inlineblock" type="checkbox" name="secondary-switch">
<input class="switch tertiary display-inlineblock" type="checkbox" name="tertiary-switch">
</div>
</div>
</body>
</html>