blob: 3c9cce98351588bf9631f492a197647c93302b1f [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <meta name="description" content="A front-end template that helps you build fast, modern mobile web apps.">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
8 <title>button test</title>
9
10 <!-- Fonts -->
11 <link href='https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&amp;lang=en' rel='stylesheet' type='text/css'>
12 <link href="https://fonts.googleapis.com/icon?family=Material+Icons"
13 rel="stylesheet">
14
15 <!-- Page styles -->
16 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/0.0.1/prism.min.css">
17 <link rel="stylesheet" href="../../material.min.css">
18 <link rel="stylesheet" href="../../components/demos.css">
19 <script src="../../material.min.js"></script>
20
21
22 <style>
23
24 </style>
25
26 </head>
27 <body>
28
29 <div style="padding-top: 24px;">
30
31
32<!-- Colored FAB button with ripple -->
33<button class="mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect mdl-button--colored">
34 <i class="material-icons">add</i>
35</button>
36
37<!-- Colored FAB button -->
38<button class="mdl-button mdl-js-button mdl-button--fab mdl-button--colored">
39 <i class="material-icons">add</i>
40</button>
41
42<!-- Disabled FAB button -->
43<button class="mdl-button mdl-js-button mdl-button--fab" disabled>
44 <i class="material-icons">add</i>
45</button>
46
47<!-- Colored mini FAB button -->
48<button class="mdl-button mdl-js-button mdl-button--fab mdl-button--mini-fab mdl-button--colored">
49 <i class="material-icons">add</i>
50</button>
51
52<!-- Mini FAB button -->
53<button class="mdl-button mdl-js-button mdl-button--fab mdl-button--mini-fab">
54 <i class="material-icons">add</i>
55</button>
56
57<!-- FAB button with ripple -->
58<button class="mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect">
59 <i class="material-icons">add</i>
60</button>
61
62<!-- FAB button -->
63<button class="mdl-button mdl-js-button mdl-button--fab">
64 <i class="material-icons">add</i>
65</button>
66
67<!-- Accent-colored flat button -->
68<button class="mdl-button mdl-js-button mdl-button--accent">
69 Button
70</button>
71
72<!-- Disabled flat button -->
73<button class="mdl-button mdl-js-button" disabled>
74 Button
75</button>
76
77<!-- Primary-colored flat button -->
78<button class="mdl-button mdl-js-button mdl-button--primary">
79 Button
80</button>
81
82<!-- Flat button with ripple -->
83<button class="mdl-button mdl-js-button mdl-js-ripple-effect">
84 Button
85</button>
86
87<!-- Flat button -->
88<button class="mdl-button mdl-js-button">
89 Button
90</button>
91
92<!-- Colored icon button -->
93<button class="mdl-button mdl-js-button mdl-button--icon mdl-button--colored">
94 <i class="material-icons">mood</i>
95</button>
96
97<!-- Icon button -->
98<button class="mdl-button mdl-js-button mdl-button--icon">
99 <i class="material-icons">mood</i>
100</button>
101
102<!-- Accent-colored raised button -->
103<button class="mdl-button mdl-js-button mdl-button--raised mdl-button--accent">
104 Button
105</button>
106
107<!-- Colored raised button -->
108<button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored">
109 Button
110</button>
111
112<!-- Raised disabled button -->
113<button class="mdl-button mdl-js-button mdl-button--raised" disabled>
114 Button
115</button>
116
117<!-- Accent-colored raised button with ripple -->
118<button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent">
119 Button
120</button>
121
122<!-- Raised button with ripple -->
123<button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect">
124 Button
125</button>
126
127<!-- Raised button -->
128<button class="mdl-button mdl-js-button mdl-button--raised">
129 Button
130</button>
131
132
133 </div>
134 <!-- Built with love using Material Design Lite -->
135
136
137 <script>
138
139 </script>
140 </body>
141</html>