-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.73 KB
/
Copy pathindex.html
File metadata and controls
48 lines (43 loc) · 1.73 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
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/vm-global.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="./src/components/vm-input/vm-input.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="./src/components/vm-toolbar/vm-toolbar.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="./css/demo.css" media="screen" title="no title" charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<title>VM - MD</title>
</head>
<body>
<div class="demo">
<h1>Toolbar</h1>
<br><br>
<header class="vm-md-header vm-md-primary-color">
<i class="material-icons">menu</i>
</header>
</div>
<div class="demo">
<h1>Inputs</h1>
<br><br>
<h3>With label</h3>
<div class="vm-md-input-container">
<input type="text" class="vm-md-input vm-md-input-accent-color" />
<label class="vm-md-label">Usuário</label>
</div>
<div class="vm-md-input-container">
<input type="password" class="vm-md-input vm-md-input-primary-color" />
<label class="vm-md-label">Senha</label>
</div>
<br><br>
<h3>With placeholder</h3>
<div class="vm-md-input-container">
<input type="text" class="vm-md-input vm-md-input-accent-color" placeholder="Texto para o input" />
</div>
</div>
</body>
<script src="./src/components/vm-input/vm-input.js" charset="utf-8"></script>
</html>