-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (64 loc) · 2.67 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
<!DOCTYPE html>
<html>
<head>
<title>Make the web glossy again</title>
<link rel="stylesheet" type="text/css" href="css/unicorn.css">
<style type="text/css">
html { font-size: 16px }
body {
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.button-container {
margin-bottom: 30px;
}
</style>
</head>
<body>
<h1>Hello Unicorn</h1>
<div class="button-container">
<h3>normal buttons</h3>
<button class="button unicorn-success">Success</button>
<button class="button unicorn-danger">Danger</button>
<button class="button unicorn-primary">Primary</button>
<button class="button unicorn-warning">Warning</button>
<button class="button unicorn-pink">I am pink</button>
<button class="button unicorn-purple">Purple</button>
<button class="button unicorn-dark">Dark side</button>
<button class="button unicorn-light">Light</button>
<button class="button unicorn-grey">Grey</button>
<button class="button unicorn-cyan">Cyan</button>
<button class="button unicorn-brownie">Brownie</button>
<button class="button unicorn-orange">Orange</button>
</div>
<div class="button-container">
<h3>square buttons</h3>
<button class="button square unicorn-success">Success</button>
<button class="button square unicorn-danger">Danger</button>
<button class="button square unicorn-primary">Primary</button>
<button class="button square unicorn-warning">Warning</button>
<button class="button square unicorn-pink">I am pink</button>
<button class="button square unicorn-purple">Purple</button>
<button class="button square unicorn-dark">Dark side</button>
<button class="button square unicorn-light">Light</button>
<button class="button square unicorn-grey">Grey</button>
<button class="button square unicorn-cyan">Cyan</button>
<button class="button square unicorn-brownie">Brownie</button>
<button class="button square unicorn-orange">Orange</button>
</div>
<div class="button-container">
<h3>rounded buttons</h3>
<button class="button rounded unicorn-success">Success</button>
<button class="button rounded unicorn-danger">Danger</button>
<button class="button rounded unicorn-primary">Primary</button>
<button class="button rounded unicorn-warning">Warning</button>
<button class="button rounded unicorn-pink">I am pink</button>
<button class="button rounded unicorn-purple">Purple</button>
<button class="button rounded unicorn-dark">Dark side</button>
<button class="button rounded unicorn-light">Light</button>
<button class="button rounded unicorn-grey">Grey</button>
<button class="button rounded unicorn-cyan">Cyan</button>
<button class="button rounded unicorn-brownie">Brownie</button>
<button class="button rounded unicorn-orange">Orange</button>
</div>
</body>
</html>