-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (34 loc) · 1.26 KB
/
Copy pathindex.html
File metadata and controls
48 lines (34 loc) · 1.26 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">
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./dist/cb-materialbtn.css">
<style>
body {
margin: 64px;
text-align: center;
}
.mb {
font-weight: bold;
width: 100px;
line-height: 100px;
margin-bottom:16px;
border-radius: 50%;
}
</style>
</head>
<body>
<input type="submit" class="btn btn-lg btn-red600_ftg" value="bootstrap" style="width: 100px; height: 100px;">
<a href=""><button class="btn btn-lg btn-block"><span>bootstrap</span></button></a>
<button class="btn btn-lg btn-red600_ftg" style="width: 100px; height: 100px;"><span>floating</span></button>
<a href="" class="btn btn-sm btn-red600_ftg" style="width: 100px; height: 100px;"><span>floating</span></a>
<a href="" class="btn btn-lg btn-lime200_rsd btn-block">raised</a>
<a href=""><div class="btn btn-lg btn-red700_flt">flat</div></a>
<div class="btn btn-black_flt btn-block">flat</div>
<button class="btn btn-black_flt" disabled="disabled">flat</button>
<button class="btn btn-lg btn-orange500_ftg" disabled>floating</button>
<button class="btn btn-purple500_rsd" disabled>raise</button>
<button class="btn btn-brown800">none</button>
</body>
</html>