-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·83 lines (59 loc) · 4.12 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>Easy Css with Sass</title>
<link href='http://fonts.googleapis.com/css?family=Sansita+One' rel='stylesheet' type='text/css'>
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="wrapper">
<p>
<a href="#" class="buttonRed small"><i class="icon-leaf"></i> love & peace</a>
<a href="#" class="buttonYellow small roundedSmall"><i class="icon-coffee"></i> .roundedSmall</a>
<a href="#" class="buttonBlueMedium small rounded"><i class="icon-gear"></i> .rounded</a>
<a href="#" class="buttonGreen small roundedLeft"><i class="icon-camera"></i> .roundedLeft</a>
<a href="#" class="buttonOrange small roundedRight"><i class="icon-home"></i> .roundedRight</a>
<a href="#" class="buttonBlue small roundedLeftTop"><i class="icon-bolt"></i> .roundedLeftTop</a>
<a href="#" class="buttonGreenLight small roundedRightTop"><i class="icon-off"></i> .roundedRightTop</a>
<a href="#" class="buttonPinkDark small roundedLeftBottom"><i class="icon-star"></i> .roundedLeftBottom</a>
<a href="#" class="buttonBeige small roundedRightBottom"><i class="icon-search"></i> .roundedRightBottom</a>
<a href="#" class="buttonBlueDark small shadow"><i class="icon-trash"></i> .shadow</a>
</p>
<div class="divider"></div>
<p>
<a href="#" class="buttonRed"><i class="icon-leaf"></i> love & peace</a>
<a href="#" class="buttonYellow roundedSmall"><i class="icon-coffee"></i> .roundedSmall</a>
<a href="#" class="buttonBlueMedium rounded"><i class="icon-gear"></i> .rounded</a>
<a href="#" class="buttonGreen roundedLeft"><i class="icon-camera"></i> .roundedLeft</a>
<a href="#" class="buttonOrange roundedRight"><i class="icon-home"></i> .roundedRight</a>
<a href="#" class="buttonBlue roundedLeftTop"><i class="icon-bolt"></i> .roundedLeftTop</a>
<a href="#" class="buttonGreenLight roundedRightTop"><i class="icon-off"></i> .roundedRightTop</a>
<a href="#" class="buttonPinkDark roundedLeftBottom"><i class="icon-star"></i> .roundedLeftBottom</a>
<a href="#" class="buttonBeige roundedRightBottom"><i class="icon-search"></i> .roundedRightBottom</a>
<a href="#" class="buttonBlueDark shadow"><i class="icon-trash"></i> .shadow</a>
</p>
<div class="divider"></div>
<p>
<a href="#" class="buttonRed large shadow"><i class="icon-leaf"></i> love & peace</a>
<a href="#" class="buttonYellow large roundedSmall"><i class="icon-coffee"></i> .roundedSmall</a>
<a href="#" class="buttonBlueMedium large rounded"><i class="icon-gear"></i> .rounded</a>
<a href="#" class="buttonGreen large roundedLeft"><i class="icon-camera"></i> .roundedLeft</a>
<a href="#" class="buttonOrange large roundedRight"><i class="icon-home"></i> .roundedRight</a>
<a href="#" class="buttonBlue large roundedLeftTop"><i class="icon-bolt"></i> .roundedLeftTop</a>
<a href="#" class="buttonGreenLight large roundedRightTop"><i class="icon-off"></i> .roundedRightTop</a>
<a href="#" class="buttonPinkDark large roundedLeftBottom"><i class="icon-star"></i> .roundedLeftBottom</a>
<a href="#" class="buttonBeige large roundedRightBottom"><i class="icon-search"></i> .roundedRightBottom</a>
</p>
<div class="divider"></div>
<p>
<a href="#" class="buttonBlueDark shadow"><i class="icon-bell"></i> tag:a</a>
<span class="buttonBlue shadow"><i class="icon-exclamation-sign"></i> tag:span</span>
<button type="submit" class="buttonRed shadow roundedLeft"><i class="icon-cloud-download"></i> tag:button[submit]</button>
<button type="button" class="buttonYellow shadow roundedRight"><i class="icon-coffee"></i> tag:button[button]</button>
<input type="submit" class="buttonBlueMedium roundedSmall shadow" value="tag:input[submit]" />
<input type="submit" class="buttonOrange rounded shadow" value="tag:input[submit]" />
</p>
</div>
</body>
</html>